/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fira Sans', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: linear-gradient(135deg, #0f172a 0%, #1a1b3a 100%);
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Static starfield effect with parallax layers */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(200,220,255,0.5), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 50% 85%, rgba(255,230,200,0.6), transparent),
        radial-gradient(1px 1px at 70% 10%, rgba(220,200,255,0.4), transparent),
        radial-gradient(2px 2px at 10% 80%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 30% 50%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 80% 75%, rgba(255,255,255,0.3), transparent);
    background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px, 400px 400px, 300px 300px, 200px 200px, 180px 180px;
    z-index: 1;
}

/* Second static star layer for enhanced depth */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 15% 60%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 75% 25%, rgba(200,230,255,0.6), transparent),
        radial-gradient(1px 1px at 85% 90%, rgba(255,220,240,0.5), transparent),
        radial-gradient(1px 1px at 35% 15%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 65% 80%, rgba(230,210,255,0.4), transparent),
        radial-gradient(1px 1px at 25% 45%, rgba(255,255,255,0.6), transparent);
    background-size: 450px 450px, 280px 280px, 380px 380px, 320px 320px, 220px 220px, 160px 160px;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: clamp(4px, 6px, 8px) clamp(6px, 8px, 12px);
    border-radius: clamp(4px, 0.6vw, 8px);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(14px, 1.6vw, 18px);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #475569 0%, #3a2b5a 50%, #64748b 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 10px rgba(71, 85, 105, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #64748b 0%, #4a3b6a 50%, #475569 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(71, 85, 105, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #cbd5e1;
    border: 2px solid rgba(203, 213, 225, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a4b7a 0%, #64748b 100%);
    color: white;
    transform: translateY(-2px);
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-text-main {
    font-weight: 600;
    font-size: clamp(13px, 1.4vw, 16px);
}

.btn-text-sub {
    font-weight: 500;
    font-size: clamp(12px, 1.2vw, 14px);
    opacity: 0.9;
}

.btn-udemy {
    background: linear-gradient(135deg, #a435f0 0%, #7c3aed 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(164, 53, 240, 0.3);
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.8vw, 10px);
    justify-content: center;
    width: 100%;
    padding: clamp(4px, 0.5vw, 6px) clamp(10px, 1.2vw, 16px);
    border-radius: clamp(6px, 0.8vw, 10px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-udemy:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(164, 53, 240, 0.4);
}

.btn-udemy svg {
    fill: currentColor;
    flex-shrink: 0;
}

/* Game Button Classes - Based on Udemy/YouTube structure */
.btn-game-steam {
    background: linear-gradient(135deg, #171a21 0%, #2a475e 100%);
    color: #c7d5e0;
    border: 2px solid rgba(199, 213, 224, 0.3);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(23, 26, 33, 0.5);
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.8vw, 10px);
    justify-content: center;
    width: 100%;
    padding: clamp(4px, 0.5vw, 6px) clamp(10px, 1.2vw, 16px);
    border-radius: clamp(6px, 0.8vw, 10px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-game-steam:hover {
    background: linear-gradient(135deg, #2a475e 0%, #66c0f4 100%);
    color: #171a21;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 192, 244, 0.4);
}

.btn-game-steam svg {
    fill: currentColor;
    flex-shrink: 0;
}

.btn-game-presskit {
    background: linear-gradient(135deg, #2d1b47 0%, #5a4b7c 100%);
    color: #d4c5f9;
    border: 2px solid rgba(212, 197, 249, 0.3);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(45, 27, 71, 0.5);
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.8vw, 10px);
    justify-content: center;
    width: 100%;
    padding: clamp(4px, 0.5vw, 6px) clamp(10px, 1.2vw, 16px);
    border-radius: clamp(6px, 0.8vw, 10px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-game-presskit:hover {
    background: linear-gradient(135deg, #5a4b7c 0%, #8b7bb8 100%);
    color: #2d1b47;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 123, 184, 0.4);
}

.btn-game-presskit svg {
    fill: currentColor;
    flex-shrink: 0;
}

.btn-game-appstore {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.8vw, 10px);
    justify-content: center;
    width: 100%;
    padding: clamp(4px, 0.5vw, 6px) clamp(10px, 1.2vw, 16px);
    border-radius: clamp(6px, 0.8vw, 10px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-game-appstore:hover {
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.btn-game-appstore svg {
    fill: currentColor;
    flex-shrink: 0;
}

.btn-game-playstore {
    background: linear-gradient(135deg, #01875f 0%, #4285f4 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.25);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(1, 135, 95, 0.5);
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.8vw, 10px);
    justify-content: center;
    width: 100%;
    padding: clamp(4px, 0.5vw, 6px) clamp(10px, 1.2vw, 16px);
    border-radius: clamp(6px, 0.8vw, 10px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-game-playstore:hover {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.btn-game-playstore svg {
    fill: currentColor;
    flex-shrink: 0;
}

/* Hero Action Buttons */
.hero-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(40, 33, 102, 0.8);
    border: 2px solid rgba(71, 85, 105, 0.6);
    border-radius: 20px;
    text-decoration: none;
    color: #f8fafc;
    font-weight: 500;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 3;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    background: rgba(51, 65, 85, 0.9);
    border-color: rgba(100, 116, 139, 0.8);
}

.hero-btn svg {
    width: 20px;
    height: 20px;
}

.shop-btn:hover {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.bugs-btn:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    color: white;
}

.gallery-btn:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

.email-btn:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* Projects Section */
.projects-section {
    padding-top: 30px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b3a 100%);
}

/* Project Cards */
.project-card {
    background: linear-gradient(135deg, #214c69 0%, #2a1b4a 50%, #203654 100%);
    border-radius: 12px;
    padding: 4px 20px 15px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.3);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(248, 250, 252, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
}

/* Specific project card overrides */
.project-card.moonshire-project,
.project-card.necrozone-overlay {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2px;
}

/* Project Logo Container */
.project-logo-container {
    padding-bottom: 10px;
    overflow: hidden;
}

/* Project Images */
.project-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 0px;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.project-logo {
    width: 100%;
    height: auto;
    max-width: 450px;
    object-fit: contain;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
    transform-origin: center;
}

/* Project Video */
.project-video {
    width: 90%;
    margin: 20px auto 30px auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.project-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: none;
}

/* Project Content */
.project-content {
    padding: 0;
}

.project-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 12px;
    line-height: 1.4;
}

.project-links {
    display: flex;
    gap: clamp(8px, 1.2vw, 16px);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Courses Grid Styling */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 12px;
}

.course-item {
    background: linear-gradient(135deg, #1e4a5f 0%, #251a3f 50%, #1c3449 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.course-thumbnail {
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.course-item:hover .course-thumbnail {
    transform: scale(1.02);
}

.course-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-title {
    font-size: 1.2rem; /* Reduced from 1.3rem */
    font-weight: 600;
    color: #f1f5f9;
    margin-top: 4px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.course-description {
    font-size: 1.0rem; /* Reduced from 1.1rem */
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

/* Tutorial Item Styling */
.tutorial-item {
    display: flex;
    background: linear-gradient(135deg, #1e4a5f 0%, #251a3f 50%, #1c3449 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
    min-height: 150px;
}

/* Game Item Styling - Same as tutorial-item but with larger images */
.game-item {
    display: flex;
    background: linear-gradient(135deg, #1e4a5f 0%, #251a3f 50%, #1c3449 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
    min-height: 200px; /* Larger than tutorial items */
}

.tutorial-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.game-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.tutorial-thumbnail {
    width: 250px;
    height: 150px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.game-thumbnail {
    width: 350px; /* Larger than tutorial thumbnail */
    height: 200px; /* Larger than tutorial thumbnail */
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.tutorial-item:hover .tutorial-thumbnail {
    transform: scale(1.03);
}

.game-item:hover .game-thumbnail {
    transform: scale(1.03);
}

.tutorial-info {
    padding: 8px 20px 8px 20px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-grow: 1;
    gap: 20px;
    min-height: 0;
}

.game-info {
    padding: 0px 16px 0px 16px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-grow: 1;
    gap: 20px;
    min-height: 0;
}

.tutorial-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

.game-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    overflow: hidden;
    height: 100%;
    padding: 0;
}

.game-content .game-title {
    flex-shrink: 0; /* Keep title at top */
    margin-bottom: 6px; /* Reduce margin below title */
}

.game-content .game-description {
    flex-grow: 2; /* Give description more space */
    display: flex;
    align-items: flex-start; /* Align description to top */
    margin-bottom: 0; /* Remove bottom margin since we're using flex */
    padding: 2px 8px 8px 8px; /* 2px top, 8px on other sides */
    height: 100px; /* Fixed height for consistency */
    overflow: hidden; /* Hide overflow if text is too long */
}

.game-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0; /* Keep buttons at bottom */
    margin-top: 6px; /* Reduce top margin */
    width: 100%; /* Expand to full container width */
}

.tutorial-title {
    font-size: 1.2rem; /* Reduced from 1.3rem */
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 8px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.game-title {
    font-size: 1.3rem; /* Reduced from 1.4rem */
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 4px; /* Reduced from 8px */
    line-height: 1.2; /* Tighter line height */
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center; /* Center title for better alignment */
}

.tutorial-description {
    font-size: 1.0rem; /* Reduced from 1.1rem */
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.8em;
}

.game-description {
    font-size: 1.0rem; /* Reduced from 1.1rem */
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 0; /* No margin since we use flex spacing */
    word-wrap: break-word;
    overflow-wrap: break-word;
    height: 100px; /* Fixed height for consistency */
    overflow: hidden; /* Hide overflow if text is too long */
    display: flex;
    align-items: flex-start; /* Align text to top within fixed height */
    /* Remove line clamp to allow more text space */
}

.btn-youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: clamp(12px, 1.3vw, 14px);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: clamp(4px, 0.6vw, 8px);
    justify-content: center;
    width: auto;
    padding: clamp(2px, 0.4vw, 6px) clamp(4px, 0.6vw, 8px);
    border-radius: clamp(4px, 0.6vw, 8px);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-youtube:hover {
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.btn-youtube svg {
    fill: currentColor;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* About Section Specific Styling */
.about-section {
    background: linear-gradient(135deg, #214c69 0%, #2a1b4a 50%, #203654 100%);
    padding: 15px 25px 15px 25px; /* Further reduced vertical padding */
    margin-bottom: 30px; /* Reduced gap below the About section */
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px; /* Reduced gap */
    padding: 0;
    min-height: 120px; /* Reduced min height */
}

.about-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-greeting {
    font-size: 1.4rem; /* Reduced from 1.6rem */
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 12px 0; /* Reduced from 16px */
    line-height: 1.3;
    text-align: center;
}

.about-description {
    font-size: 1.05rem; /* Reduced from 1.2rem */
    color: #cbd5e1;
    line-height: 1.5; /* Reduced from 1.6 */
    margin: 0 0 8px 0; /* Reduced from 12px */
}

.about-description:last-child {
    margin-bottom: 0;
}

.about-companies {
    margin-top: 20px;
}

.companies-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.companies-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.companies-list li {
    font-size: 0.95rem;
    color: #94a3b8;
    padding: 4px 0;
    position: relative;
    padding-left: 16px;
}

.companies-list li::before {
    content: "•";
    color: #64748b;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 4px;
}

.about-image {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.about-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-pic:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-email-me {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.8vw, 10px);
    justify-content: center;
    width: auto;
    min-width: clamp(90px, 11vw, 110px);
    padding: clamp(6px, 0.8vw, 10px) clamp(10px, 1vw, 14px);
    border-radius: clamp(4px, 0.6vw, 8px);
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-email-me:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-email-me svg {
    fill: none;
    stroke: currentColor;
    flex-shrink: 0;
}

/* Smaller email button variant */
.btn-email-small {
    padding: clamp(2px, 0.3vw, 4px) clamp(6px, 0.6vw, 8px) !important;
    font-size: clamp(14px, 1.3vw, 16px) !important;
    gap: clamp(4px, 0.6vw, 8px) !important;
}

.btn-email-small svg {
    width: 16px;
    height: 16px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #114254 0%, #2a1b4a 50%, #203654 100%);
    padding: 12px 0;
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.contact-section p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0;
    opacity: 0.8;
}

/* Necrozone Overlay Layout */
.necrozone-overlay {
    position: relative;
    padding-bottom: 0;
}

.necrozone-overlay .project-image {
    margin-bottom: 0;
    padding-left: 10%;
    padding-right: 10%;
}

.necrozone-overlay:hover .project-image {
    transform: none;
}

.necrozone-overlay .project-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: none;
    padding: 0;
    margin: 0;
}

.necrozone-overlay .project-description {
    display: none;
}

.necrozone-overlay .project-links {
    gap: 15px;
    justify-content: center;
}
