/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-align: center;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    text-align: center;
    margin-bottom: 2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes glitch {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(128, 128, 128, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: #4ecdc4;
    animation: logoPulse 3s ease-in-out infinite;
    margin-left: -3rem;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #4ecdc4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    background: none;
    border: none;
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
}

.lang-divider {
    color: #666;
    font-weight: 300;
}

/* Hide mobile language switcher on desktop */
.mobile-language-switcher {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #4ecdc4;
    transition: 0.3s;
}

/* ===== LEGAL POPUP ===== */
.legal-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.legal-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid #4ecdc4;
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: popupSlide 0.3s ease;
}

.legal-popup-title {
    color: #4ecdc4;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.legal-popup-text {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.legal-popup-close {
    background: linear-gradient(45deg, #4ecdc4, #45b7b8);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.legal-popup-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popupSlide {
    from { 
        transform: translate(-50%, -60%);
        opacity: 0;
        scale: 0.8;
    }
    to { 
        transform: translate(-50%, -50%);
        opacity: 1;
        scale: 1;
    }
}

/* ===== EASTER EGG - GLITCH TEXT ===== */
.easter-egg-text {
    display: inline;
    cursor: pointer;
    position: relative;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: glitchSubtle 3s ease-in-out infinite;
    text-shadow: 
        1px 0 rgba(255, 0, 255, 0.3),
        -1px 0 rgba(0, 255, 255, 0.3);
}

.easter-egg-text:hover {
    animation: glitchHover 0.5s ease-in-out infinite;
    text-shadow: 
        3px 0 #ff00ff,
        -3px 0 #00ffff,
        0 2px #ffff00;
}

.easter-egg-text::before {
    content: attr(data-glitch);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    color: #ff00ff;
    animation: glitchBeforeSubtle 4s ease-in-out infinite;
}

.easter-egg-text:hover::before {
    opacity: 0.7;
    animation: glitchBefore 0.5s ease-in-out infinite;
}

.easter-egg-text::after {
    content: attr(data-glitch);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    color: #00ffff;
    animation: glitchAfterSubtle 3.5s ease-in-out infinite;
}

.easter-egg-text:hover::after {
    opacity: 0.7;
    animation: glitchAfter 0.5s ease-in-out infinite;
}

@keyframes glitchHover {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitchBefore {
    0%, 100% { opacity: 0; transform: translate(0); }
    50% { opacity: 0.7; transform: translate(-3px, 0); }
}

@keyframes glitchAfter {
    0%, 100% { opacity: 0; transform: translate(0); }
    50% { opacity: 0.7; transform: translate(3px, 0); }
}

/* Subtle glitch animations for constant effect */
@keyframes glitchSubtle {
    0%, 90%, 100% { transform: translate(0); }
    95% { transform: translate(0.5px, 0.5px); }
}

@keyframes glitchBeforeSubtle {
    0%, 85%, 100% { opacity: 0.1; transform: translate(0); }
    90% { opacity: 0.3; transform: translate(-1px, 0); }
}

@keyframes glitchAfterSubtle {
    0%, 80%, 100% { opacity: 0.1; transform: translate(0); }
    85% { opacity: 0.3; transform: translate(1px, 0); }
}

/* ===== DUCK DANCE POPUP ===== */
.duck-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.duck-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 3px solid #ffdd44;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    animation: duckSlide 0.5s ease;
}

.duck-popup h3 {
    color: #ffdd44;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.duck-popup img {
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
    margin: 1rem 0;
}

.duck-popup-close {
    background: linear-gradient(45deg, #ffdd44, #ff9900);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 1rem;
}

.duck-popup-close:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 221, 68, 0.4);
}

@keyframes duckSlide {
    from { 
        transform: translate(-50%, -60%) rotate(-10deg);
        opacity: 0;
        scale: 0.5;
    }
    to { 
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 1;
        scale: 1;
    }
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #4ecdc4;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.loading-text {
    display: flex;
    justify-content: center;
    gap: 0.1rem;
    margin-bottom: 1rem;
}

.loading-letter {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(45deg, #4ecdc4, #45b7b8, #66c0f4);
    background-clip: text;
    -webkit-background-clip: text;
    opacity: 0;
    transform: translateY(20px);
    animation: letterAppear 0.6s ease forwards;
}

.loading-letter.space {
    width: 1rem;
}

.loading-progress {
    width: 300px;
    height: 4px;
    background: rgba(78, 205, 196, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 2rem auto 1rem;
}

.loading-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #4ecdc4, #66c0f4);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.loading-status {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-top: 1rem;
}

.loading-goose {
    font-size: 2rem;
    animation: gooseBounce 1s ease-in-out infinite;
    margin-top: 1rem;
}

/* Letter appear animation */
@keyframes letterAppear {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Goose bounce animation */
@keyframes gooseBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .loading-logo {
        font-size: 2rem;
    }
    
    .loading-letter {
        font-size: 1.8rem;
    }
    
    .loading-progress {
        width: 250px;
    }
    
    /* Duck popup mobile responsive */
    .duck-popup-content {
        width: 90%;
        max-width: 350px;
        padding: 1.5rem;
        margin: 0 1rem;
        border-radius: 15px;
        border-width: 2px;
    }
    
    .duck-popup h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .duck-popup img {
        max-width: 250px;
        margin: 0.8rem 0;
    }
    
    .duck-popup p {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }
    
    .duck-popup-close {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 0.8rem;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .duck-popup-content {
        width: 95%;
        max-width: 300px;
        padding: 1rem;
        margin: 0 0.5rem;
        border-radius: 10px;
    }
    
    .duck-popup h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .duck-popup img {
        max-width: 200px;
        margin: 0.6rem 0;
    }
    
    .duck-popup p {
        font-size: 0.8rem;
        margin: 0.4rem 0;
    }
    
    .duck-popup-close {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        margin-top: 0.6rem;
    }
}

/* ===== TEAM SECTION STYLES ===== */
.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4ecdc4;
}

.goose-avatar {
    border-color: #ffdd44 !important;
    animation: gooseBounce 2s ease-in-out infinite;
}

/* Tester Team Expandable Section */
.tester-section {
    margin-top: 3rem;
    border-top: 2px solid rgba(78, 205, 196, 0.3);
    padding-top: 2rem;
}

.tester-toggle {
    width: 100%;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(69, 183, 209, 0.1));
    border: 2px solid #4ecdc4;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    color: #4ecdc4;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tester-toggle:hover {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(69, 183, 209, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.tester-toggle i {
    transition: transform 0.3s ease;
}

.tester-toggle.active i {
    transform: rotate(180deg);
}

.tester-team {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 1rem;
}

.tester-team.active {
    max-height: 800px;
    padding: 2rem 1rem;
}

.tester-intro {
    text-align: center;
    color: #a0a0a0;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.tester-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tester-member {
    background: rgba(78, 205, 196, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tester-member:hover {
    transform: translateY(-5px);
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
}

.tester-avatar {
    margin-bottom: 1rem;
}

.tester-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffdd44;
    object-fit: cover;
}

.tester-member h4 {
    color: #4ecdc4;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tester-role {
    color: #ffdd44;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.tester-bio {
    color: #a0a0a0;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Mobile responsive for tester section */
@media (max-width: 768px) {
    .tester-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tester-member {
        padding: 1rem;
    }
    
    .tester-photo {
        width: 50px;
        height: 50px;
    }
}

/* ===== LAZY DEVELOPER POPUP ===== */
.lazy-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10002;
    animation: fadeIn 0.3s ease;
}

.lazy-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 3px solid #4ecdc4;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    animation: lazySlide 0.5s ease;
}

.lazy-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid rgba(78, 205, 196, 0.3);
}

.lazy-popup-header h3 {
    color: #4ecdc4;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin: 0;
}

.lazy-close {
    color: #ff6b6b;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.lazy-close:hover {
    color: #ff5252;
    transform: rotate(90deg);
}

.lazy-popup-body {
    padding: 2rem;
    text-align: center;
}

.lazy-avatar {
    margin-bottom: 1.5rem;
}

.lazy-gif {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ffdd44;
}

.lazy-message p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lazy-contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.lazy-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 10px;
    color: #4ecdc4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lazy-option:hover {
    background: rgba(78, 205, 196, 0.2);
    transform: translateY(-2px);
    border-color: #4ecdc4;
}

.lazy-option i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.lazy-note {
    font-style: italic;
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.lazy-popup-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.message-section {
    padding: 4rem 0;
    background: rgba(78, 205, 196, 0.05);
}

.message-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.message-header h2 {
    color: #4ecdc4;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.message-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.main-contact {
    max-width: 800px;
    margin: 0 auto;
}

.social-link.email {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
}

.social-link.email:hover {
    background: linear-gradient(45deg, #ee5a52, #ff6b6b);
}

@keyframes lazySlide {
    from { 
        transform: translate(-50%, -60%) rotate(-5deg);
        opacity: 0;
        scale: 0.8;
    }
    to { 
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 1;
        scale: 1;
    }
}

/* Mobile responsive for lazy popup */
@media (max-width: 768px) {
    .lazy-popup-content {
        width: 95%;
        margin: 0 1rem;
    }
    
    .lazy-popup-header,
    .lazy-popup-body,
    .lazy-popup-footer {
        padding: 1rem;
    }
    
    .lazy-contact-options {
        gap: 0.8rem;
    }
    
    .lazy-option {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .lazy-gif {
        width: 60px;
        height: 60px;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.btn-outline:hover {
    background: #4ecdc4;
    color: #0a0a0a;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(69, 183, 209, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem 0;
    overflow: visible;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    min-height: 200px;
    overflow: visible;
}

.animated-hero-text {
    position: relative;
    color: #ff6b6b;
    display: block;
    overflow: visible;
    min-height: 80px;
    line-height: 1.2;
}

.animated-hero-text .hero-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(-100px);
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.animated-hero-text .hero-letter:nth-child(odd) {
    transform: translateY(-100px) rotateX(90deg);
}

.animated-hero-text .hero-letter:nth-child(even) {
    transform: translateY(100px) rotateX(-90deg);
}

.animated-hero-text.studios .hero-letter {
    color: #4ecdc4;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

/* Hero Letter Animations */
@keyframes heroLetterFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotateX(90deg) scale(0.5);
    }
    15% {
        opacity: 1;
        transform: translateY(10px) rotateX(0deg) scale(1.1);
    }
    25% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
    /* Bekleyiş süresi - 3.5 saniye sabit kalıyor */
    75% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
    85% {
        opacity: 1;
        transform: translateY(-10px) rotateX(0deg) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translateY(100px) rotateX(-90deg) scale(0.5);
    }
}

@keyframes heroLetterFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(-90deg) scale(0.5);
    }
    15% {
        opacity: 1;
        transform: translateY(-10px) rotateX(0deg) scale(1.1);
    }
    25% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
    /* Bekleyiş süresi - 3.5 saniye sabit kalıyor */
    75% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
    85% {
        opacity: 1;
        transform: translateY(10px) rotateX(0deg) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotateX(90deg) scale(0.5);
    }
}

.glitch {
    position: relative;
    color: #ff6b6b;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: #4ecdc4;
    z-index: -1;
    animation: glitch 2s infinite;
}

.glitch::after {
    color: #45b7d1;
    z-index: -2;
    animation: glitch 2s infinite reverse;
}

.studios {
    color: #4ecdc4;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #4ecdc4;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== INDEX PAGE FEATURED PROJECTS ===== */
.index-featured-projects {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    overflow: visible;
}

.index-featured-projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4ecdc4;
}

.index-projects-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    overflow: visible;
    padding: 2rem;
}

.index-project-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transform: scale(1);
}

.index-project-card:hover {
    transform: translateY(-10px) scale(1.20);
    box-shadow: 0 25px 60px rgba(255, 107, 107, 0.5);
    z-index: 10;
}

.index-project-image {
    height: 150px;
    width: 100%;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.index-project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.index-project-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.index-project-content p {
    color: #a0a0a0;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.index-project-specs {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.index-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0a0a0;
}

.index-spec-item strong {
    color: #4ecdc4;
}

.index-steam-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(45deg, #1b2838, #2a475e);
    color: #66c0f4;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 192, 244, 0.3);
}

.index-steam-button:hover {
    background: linear-gradient(45deg, #2a475e, #1b2838);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(102, 192, 244, 0.2);
}

.index-steam-button.disabled {
    background: rgba(108, 117, 125, 0.3);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
    cursor: not-allowed;
    pointer-events: none;
}

.index-steam-button i {
    font-size: 1rem;
}

/* Steam button for projects page */
.steam-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(45deg, #1b2838, #2a475e);
    color: #66c0f4;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 192, 244, 0.3);
}

.steam-button:hover {
    background: linear-gradient(45deg, #2a475e, #1b2838);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(102, 192, 244, 0.2);
}

.steam-button i {
    font-size: 1rem;
}

/* ===== ORIGINAL FEATURED PROJECTS (FOR OTHER PAGES) ===== */
.featured-projects {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.featured-projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4ecdc4;
}

.projects-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.5s ease;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.project-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.project-card p {
    color: #a0a0a0;
    margin-bottom: 1rem;
}

.status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

.status.developing {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status.secret {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

/* ===== ABOUT CONTENT ===== */
.about-content {
    padding: 80px 0;
}

.vision-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.vision-card h2 {
    text-align: center;
    color: #4ecdc4;
    margin-bottom: 2rem;
}

.vision-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight-box {
    background: rgba(78, 205, 196, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4ecdc4;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: #4ecdc4;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-box {
    background: rgba(255, 107, 107, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
    margin: 2rem 0;
}

.playful {
    font-style: italic;
    color: #a0a0a0;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 60px 0;
    text-align: center;
}

.stats-section h2 {
    color: #4ecdc4;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b6b;
    font-family: 'Orbitron', monospace;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    color: #4ecdc4;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.value-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.value-card p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.team-section h2 {
    text-align: center;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.team-member h3 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #a0a0a0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.member-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.skill {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

/* ===== CULTURE SECTION ===== */
.culture-section {
    padding: 80px 0;
}

.culture-section h2 {
    text-align: center;
    color: #4ecdc4;
    margin-bottom: 3rem;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.culture-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.culture-item h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.culture-item p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(128, 128, 128, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    color: #4ecdc4;
}

.footer-logo i {
    font-size: 1.3rem;
    color: #ff6b6b;
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #4ecdc4;
}

.footer-legal {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-legal a:hover {
    color: #4ecdc4;
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .language-switcher {
        margin-left: 1rem;
        display:none;
        order: -1;
    }
    .mobile-language-switcher {
        display: flex;
    }
    .nav-logo{
        margin-left: 0rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .footer-nav {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer-legal {
        gap: 0.8rem;
        max-width: none;
    }
    
    .footer-legal a {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        border: 1px solid rgba(136, 136, 136, 0.3);
        border-radius: 15px;
        transition: all 0.3s ease;
    }
    
    .footer-legal a:hover {
        border-color: #4ecdc4;
        background: rgba(78, 205, 196, 0.1);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid,
    .team-grid,
    .culture-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-card,
    .project-card,
    .stat-item,
    .value-card,
    .team-member,
    .culture-item {
        padding: 1.5rem;
    }
}

/* ===== PROJECTS PAGE SPECIFIC STYLES ===== */
.projects-header {
    background: radial-gradient(circle at center, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
}

.featured-project {
    padding: 0px 0;
    margin-bottom: 80px;
}

.featured-project .container {
    max-width: 1400px;
    padding: 0 2rem;
}

.project-showcase {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: auto auto;
    gap: 2rem;
    min-height: 80vh;
    align-items: stretch;
}

.project-media {
    position: relative;
    padding: 1rem;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

.project-info {
    padding: 2rem;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

.project-details {
    padding: 2rem;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}

.project-progress {
    padding: 2rem;
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}





.project-image-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.placeholder-text {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    color: #4ecdc4;
}

.project-gallery {
    display: flex;
    gap: 1rem;
}

.gallery-item {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover,
.gallery-item.active {
    background: rgba(78, 205, 196, 0.2);
    border-color: #4ecdc4;
    color: #4ecdc4;
}

.project-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-status-badge.developing {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.project-status-badge.secret {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.project-title {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.project-tagline {
    font-size: 1.2rem;
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 2rem;
}

.project-description {
    margin-bottom: 2rem;
}

.project-description p {
    margin-bottom: 1rem;
    color: #a0a0a0;
    line-height: 1.7;
}

.project-features {
    margin-bottom: 2rem;
}

.project-features h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.project-features ul {
    list-style: none;
}

.project-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #a0a0a0;
}

.project-features i {
    color: #ff6b6b;
    width: 20px;
}

.project-specs {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #a0a0a0;
}

.spec-item strong {
    color: #4ecdc4;
}

.project-progress {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-label {
    color: #4ecdc4;
    font-weight: 600;
}

.progress-percentage {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

.progress-milestones {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.milestone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.milestone.completed {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.milestone.in-progress {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.milestone.pending {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

/* ===== SECRET PROJECT STYLES ===== */
.secret-project {
    padding: 80px 0;
    margin-top: 80px;
    background: rgba(138, 43, 226, 0.05);
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.secret-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
}

.secret-visual {
    position: relative;
    height: 400px;
}

.secret-placeholder {
    background: rgba(138, 43, 226, 0.1);
    border: 2px dashed rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8a2be2;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.glitch-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 1rem;
    animation: glitch 2s infinite;
}

.secret-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.secret-title {
    font-size: 2.5rem;
    color: #8a2be2;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.secret-tagline {
    font-size: 1.2rem;
    color: #a0a0a0;
    font-weight: 600;
    margin-bottom: 2rem;
}

.encrypted-text {
    font-family: 'Courier New', monospace;
    color: #8a2be2;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.secret-clues {
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.secret-clues h3 {
    color: #8a2be2;
    margin-bottom: 1rem;
}

.clue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.clue-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    color: #a0a0a0;
    font-size: 0.9rem;
}

.clue-item i {
    color: #8a2be2;
}

.secret-countdown {
    background: rgba(138, 43, 226, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.secret-countdown h3 {
    color: #8a2be2;
    text-align: center;
    margin-bottom: 1rem;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #8a2be2;
    font-family: 'Orbitron', monospace;
}

.countdown-label {
    font-size: 0.8rem;
    color: #a0a0a0;
}

.countdown-text {
    text-align: center;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.secret-subscribe {
    background: rgba(138, 43, 226, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.secret-subscribe h3 {
    color: #8a2be2;
    margin-bottom: 1rem;
}

.secret-subscribe p {
    color: #a0a0a0;
    margin-bottom: 1rem;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
}

.subscribe-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 5px;
    background: rgba(138, 43, 226, 0.05);
    color: #e0e0e0;
}

.subscribe-form input::placeholder {
    color: #a0a0a0;
}

.btn-secret {
    background: linear-gradient(45deg, #8a2be2, #9932cc);
    color: white;
    border: none;
}

.btn-secret:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

/* ===== DEVELOPMENT PHILOSOPHY ===== */
.dev-philosophy {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.dev-philosophy .section-title {
    text-align: center;
    color: #4ecdc4;
    margin-bottom: 3rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.philosophy-item h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* ===== TECH STACK ===== */
.tech-stack {
    padding: 80px 0;
}

.tech-stack .section-title {
    text-align: center;
    color: #4ecdc4;
    margin-bottom: 3rem;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-category h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateX(5px);
}

.tech-item i {
    color: #4ecdc4;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.tech-item span {
    color: #e0e0e0;
    font-weight: 500;
}

/* ===== BLOG STYLES ===== */
.blog-header {
    background: radial-gradient(circle at center, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
}

.featured-post {
    padding: 80px 0;
}

.post-featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-image {
    position: relative;
}

.post-placeholder {
    background: rgba(255, 255, 255, 0.1);
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #4ecdc4;
    font-size: 3rem;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #4ecdc4;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.post-category {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-category.dev-diary {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.post-category.studio-news {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.post-category.behind-scenes {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.post-category.coffee-talk {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.read-time {
    color: #a0a0a0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.post-title {
    color: #ff6b6b;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-excerpt {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-content-preview {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4ecdc4;
    margin-bottom: 1.5rem;
}

.post-content-preview p {
    margin-bottom: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.post-content-preview blockquote {
    background: rgba(78, 205, 196, 0.1);
    padding: 1rem;
    border-radius: 5px;
    border-left: 3px solid #4ecdc4;
    font-style: italic;
    color: #4ecdc4;
    margin: 1rem 0;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-social {
    display: flex;
    gap: 1rem;
}

.social-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #a0a0a0;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-btn:hover {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    border-color: rgba(78, 205, 196, 0.3);
}

/* ===== BLOG POSTS GRID ===== */
.blog-posts {
    padding: 80px 0;
}

.blog-filters {
    margin-bottom: 3rem;
}

.blog-filters h2 {
    color: #4ecdc4;
    margin-bottom: 1.5rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #a0a0a0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    border-color: rgba(78, 205, 196, 0.3);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.blog-post .post-image {
    position: relative;
    height: 200px;
}

.blog-post .post-placeholder {
    height: 100%;
    min-height: auto;
    font-size: 2rem;
}

.blog-post .post-content {
    padding: 1.5rem;
}

.blog-post .post-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.blog-post .post-excerpt {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-post .post-meta {
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.tag {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.blog-post .post-actions {
    margin-top: 1rem;
}

.read-more {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff6b6b;
}

.post-stats {
    display: flex;
    gap: 1rem;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    margin-bottom: 1rem;
}

.posts-count {
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* ===== NEWSLETTER SIGNUP ===== */
.newsletter-signup {
    padding: 60px 0;
    background: rgba(78, 205, 196, 0.05);
    border-top: 1px solid rgba(78, 205, 196, 0.2);
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: #a0a0a0;
    font-size: 1.1rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 5px;
    background: rgba(78, 205, 196, 0.05);
    color: #e0e0e0;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #a0a0a0;
}

.newsletter-note {
    color: #a0a0a0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-note i {
    color: #4ecdc4;
}

/* ===== CONTACT STYLES ===== */
.contact-header {
    background: radial-gradient(circle at center, rgba(69, 183, 209, 0.1) 0%, transparent 70%);
}

.contact-info {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(69, 183, 209, 0.2);
}

.contact-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.8rem;
    color: #a0a0a0;
    line-height: 1.6;
}

.contact-details strong {
    color: #e0e0e0;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: #a0a0a0;
}

.contact-action {
    margin-top: 1.5rem;
}

.social-card .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #a0a0a0;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.3);
    color: #4ecdc4;
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.1);
    border-color: rgba(29, 161, 242, 0.3);
    color: #1da1f2;
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.3);
    color: #e1306c;
}

.social-link.discord:hover {
    background: rgba(114, 137, 218, 0.1);
    border-color: rgba(114, 137, 218, 0.3);
    color: #7289da;
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff0000;
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.form-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

.form-error {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: block;
}

.character-count {
    text-align: right;
    color: #a0a0a0;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    cursor: pointer;
    color: #a0a0a0;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-color: transparent;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.privacy-link {
    color: #4ecdc4;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ===== OFFICE HOURS ===== */
.office-hours {
    padding: 80px 0;
}

.hours-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hours-info h2 {
    color: #4ecdc4;
    margin-bottom: 2rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hours-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.day-group h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.day-schedule {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.day-schedule:last-child {
    border-bottom: none;
}

.day-schedule.closed {
    opacity: 0.6;
}

.days {
    color: #4ecdc4;
    font-weight: 600;
}

.hours {
    color: #a0a0a0;
}

.special-hours {
    list-style: none;
}

.special-hours li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #a0a0a0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.special-hours li:last-child {
    border-bottom: none;
}

.special-hours i {
    color: #ff6b6b;
    width: 20px;
    text-align: center;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.visit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(69, 183, 209, 0.2);
}

.visit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.visit-card h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.visit-card p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq-section .section-title {
    text-align: center;
    color: #4ecdc4;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    color: #ff6b6b;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #4ecdc4;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #a0a0a0;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== PROJECT MEDIA DISPLAY ===== */
.project-main-display {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.05);
}

.main-video,
.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: opacity 0.3s ease;
}

.main-video {
    background: #000;
}

.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.project-main-display:hover .media-overlay {
    opacity: 1;
}

.media-info span {
    color: #4ecdc4;
    font-weight: 600;
    font-size: 1rem;
}

.project-gallery {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.gallery-item {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.gallery-item:hover,
.gallery-item.active {
    border-color: #4ecdc4;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-video-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
}

.gallery-video-thumb i {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

/* ===== PROJECT IMAGES ===== */
.project-img, .secret-img, .post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.secret-main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.secret-img {
    filter: grayscale(50%) contrast(1.2);
}

.secret-overlay {
    background: rgba(138, 43, 226, 0.3);
}

.glitch-text {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: #8a2be2;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.8);
}

/* ===== BLOG POST IMAGES ===== */
.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-img,
.post-featured:hover .post-img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.post-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #4ecdc4;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    background: rgba(10, 10, 10, 0.95);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.video-close:hover {
    color: #ff6b6b;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-info h3 {
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN FOR NEW PAGES ===== */
@media (max-width: 768px) {
    .index-projects-preview {
        grid-template-columns: 1fr;
        max-width: 400px;
        padding: 1rem;
    }
    
    .featured-project .container {
        padding: 0 1rem;
    }
    
    .project-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 1rem;
        min-height: auto;
    }
    
    .project-media {
        grid-row: 1 / 2;
        grid-column: 1 / -1;
        padding: 0.5rem;
    }
    
    .project-info {
        grid-row: 2 / 3;
        grid-column: 1 / -1;
        padding: 1rem;
    }
    
    .project-details {
        grid-row: 3 / 4;
        grid-column: 1 / -1;
        padding: 1rem;
    }
    
    .project-progress {
        grid-row: 4 / 5;
        grid-column: 1 / -1;
        padding: 1rem;
    }
    
    .secret-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-main-display {
        height: 300px;
        max-width: 100%;
    }
}
    
    .post-featured {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hours-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid,
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .clue-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-display {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .subscribe-form {
        flex-direction: column;
    }


@media (max-width: 480px) {
    .featured-project .container {
        padding: 0 0.5rem;
    }
    
    .project-showcase {
        gap: 0.5rem;
    }
    
    .project-media,
    .project-info,
    .project-details,
    .project-progress {
        padding: 0.75rem;
    }
    
    .project-title,
    .secret-title {
        font-size: 1.5rem;
    }
    
    .project-tagline,
    .secret-tagline {
        font-size: 0.9rem;
    }
    
    .project-main-display {
        height: 250px;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .post-featured .post-content {
        padding: 1.5rem;
    }
    
    .blog-post .post-content {
        padding: 1rem;
    }
}
