/* Titancore Landing Page Styles */
:root {
    --primary-color: #ffffff;
    --secondary-color: #aaebff;
    --dark-bg: #121218;
    --light-bg: #1a1a24;
    --text-color: #f0f0f0;
    --accent-color: #00e5ff;
    --steam-color: #1b2838;
    --steam-accent: #66c0f4;
    --neon-glow: 0 0 10px rgba(0, 229, 255, 0.7), 0 0 20px rgba(0, 229, 255, 0.4), 0 0 30px rgba(0, 229, 255, 0.2);
    --titan-accent: rgba(0, 229, 255, 0.8);
    --card-bg: rgba(26, 26, 36, 0.4);
    --card-border: rgba(0, 229, 255, 0.1);
    --card-hover-border: rgba(0, 229, 255, 0.2);
    --card-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header and Navigation */
header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-bg);
    overflow: hidden;
    position: relative;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(18, 18, 24, 0.8) 100%
        ),
        url('./images/mech-bg.jpg') no-repeat center center/cover;
    background-size: cover;
    animation: zoomEffect 30s infinite alternate;
    z-index: -1;
    filter: contrast(1.2) saturate(1.2);
}

.main-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            circle at 20% 30%,
            rgba(0, 229, 255, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(170, 235, 255, 0.1) 0%,
            transparent 40%
        );
    pointer-events: none;
    z-index: -1;
}

/* Add mesh grid overlay for futuristic effect */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.5;
    animation: gridPulse 8s infinite alternate;
}

@keyframes gridPulse {
    0% { opacity: 0.3; }
    50% { opacity: 0.5; }
    100% { opacity: 0.3; }
}

@keyframes zoomEffect {
    0% { 
        transform: scale(1) translate(0, 0); 
        filter: brightness(0.9);
    }
    50% {
        filter: brightness(1);
    }
    100% { 
        transform: scale(1.1) translate(-1%, -1%); 
        filter: brightness(0.95);
    }
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, var(--dark-bg), transparent);
    z-index: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Steam Button Styles */
.cta-button {
    display: flex;
    align-items: center;
}

.steam-btn {
    background-color: var(--steam-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: 1px solid var(--steam-accent);
    white-space: nowrap;
}

.steam-btn:hover {
    background-color: #263b51;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    text-shadow: var(--neon-glow);
    animation: titlePulse 4s infinite alternate;
}

@keyframes titlePulse {
    0% { text-shadow: 0 0 10px rgba(0, 229, 255, 0.7), 0 0 20px rgba(0, 229, 255, 0.4), 0 0 30px rgba(0, 229, 255, 0.2); }
    100% { text-shadow: 0 0 15px rgba(0, 229, 255, 0.9), 0 0 25px rgba(0, 229, 255, 0.6), 0 0 35px rgba(0, 229, 255, 0.4); }
}

.hero h1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.7;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.watch-trailer, .steam-hero {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.3s;
}

.watch-trailer {
    background-color: transparent;
    border: 2px solid var(--text-color);
}

.steam-hero {
    background-color: var(--steam-color);
    color: white;
    border: 1px solid var(--steam-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.watch-trailer:hover, .steam-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.steam-hero:hover {
    background-color: #263b51;
}

/* Section Styling */
.section {
    padding: 5rem 5%;
    position: relative;
}

.section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--text-color);
    text-shadow: var(--neon-glow);
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    box-shadow: var(--neon-glow);
}

.dark {
    background-color: var(--light-bg);
    background: linear-gradient(rgba(26, 26, 36, 0.9), rgba(26, 26, 36, 0.9)),
                url('./images/titan-battle.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
    border-color: var(--card-hover-border);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.feature h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.feature p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Titans Section */
.titans-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    margin-top: 2rem;
}

.titan {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 480px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--card-border);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
}

.titan:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
    border-color: var(--card-hover-border);
}

.titan-image {
    height: 70%;
    position: relative;
    overflow: hidden;
}

.titan-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--dark-bg), transparent);
}

.titan-1 {
    background: url('./images/titan-1.jpg') no-repeat center center/cover;
}

.titan-2 {
    background: url('./images/titan-2.jpg') no-repeat center center/cover;
}

.titan-3 {
    background: url('./images/titan-3.jpg') no-repeat center center/cover;
}

.titan-info {
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
}

.titan-info h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.titan-class {
    color: var(--secondary-color);
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.titan-info p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Trailer Section */
.trailer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.trailer-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: var(--card-hover-border);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(45deg, var(--dark-bg), var(--light-bg));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 229, 255, 0.2), rgba(170, 235, 255, 0.2));
    opacity: 0.7;
    transition: opacity 0.3s;
    z-index: 1;
}

.video-placeholder:hover::before {
    opacity: 0.9;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: rgba(0, 229, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-placeholder:hover .play-button {
    background-color: rgba(0, 229, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: var(--neon-glow);
}

/* Media Gallery */
.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--card-border);
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--card-shadow);
    border-color: var(--card-hover-border);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 229, 255, 0.2), rgba(170, 235, 255, 0.2));
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:nth-child(1) {
    background: linear-gradient(45deg, #ff4800, #2d3bd2);
}

.gallery-item:nth-child(2) {
    background: linear-gradient(45deg, #2d3bd2, #00e5ff);
}

.gallery-item:nth-child(3) {
    background: linear-gradient(45deg, #00e5ff, #ff4800);
}

.gallery-item:nth-child(4) {
    background: linear-gradient(45deg, #263b51, #ff4800);
}

/* Steam Section */
#steam {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
                url('./images/titan-pilot.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

#join {
    padding: 4rem 5%;
    background: linear-gradient(to bottom, var(--dark-bg), var(--light-bg));
    position: relative;
    overflow: hidden;
}

#join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            circle at 20% 30%,
            rgba(0, 229, 255, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(170, 235, 255, 0.05) 0%,
            transparent 40%
        );
    pointer-events: none;
}

.join-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 3rem;
    align-items: start;
}

.vertical-divider {
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--accent-color),
        transparent
    );
    opacity: 0.3;
}

.steam-section,
.newsletter-section {
    padding: 2rem;
    background: rgba(26, 26, 36, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.steam-section:hover,
.newsletter-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.2);
}

.section-title {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.steam-section .release-info {
    margin-bottom: 2rem;
}

.steam-section .coming-soon {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    margin-bottom: 1rem;
}

.steam-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.newsletter-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.steam-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--steam-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--steam-accent);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    justify-content: center;
    margin-bottom: 1rem;
}

.steam-button:hover {
    background-color: #263b51;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 192, 244, 0.2);
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

#email {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

#email:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

#email::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.subscribe-btn {
    padding: 1rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.steam-logo {
    height: 24px;
    width: auto;
}

@media (max-width: 1024px) {
    .join-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vertical-divider {
        display: none;
    }

    .steam-section,
    .newsletter-section {
        padding: 1.5rem;
    }

    .section h2 {
        font-size: 2.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .titan {
        height: 420px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .cta-button {
        margin-left: auto;
    }
    
    .steam-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 5%;
    }
    
    .section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .steam-section,
    .newsletter-section {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .form-group {
        flex-direction: column;
    }

    .steam-button,
    .subscribe-btn {
        width: 100%;
        max-width: none;
    }

    .feature {
        padding: 2rem;
    }

    .titan {
        height: 380px;
    }

    .titan-info {
        padding: 1.5rem;
    }

    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .watch-trailer, .steam-hero {
        width: 100%;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .cta-button {
        display: flex;
    }
    
    .steam-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .feature h3 {
        font-size: 1.3rem;
    }

    .titan-info h3 {
        font-size: 1.5rem;
    }
}

/* Particle effect styles */
.particle {
    position: absolute;
    background-color: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 0;
    box-shadow: 0 0 6px var(--accent-color);
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(var(--x-drift));
        opacity: 0;
    }
}

/* More dynamic zoom effect for the header background */
@keyframes zoomEffect {
    0% { 
        transform: scale(1) translate(0, 0); 
        filter: brightness(0.9);
    }
    50% {
        filter: brightness(1);
    }
    100% { 
        transform: scale(1.1) translate(-1%, -1%); 
        filter: brightness(0.95);
    }
}

/* Newsletter Section */
.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background-color: rgba(27, 40, 56, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(102, 192, 244, 0.3);
}

.newsletter-container p {
    margin-bottom: 2rem;
    color: #fff;
    font-size: 1rem;
}

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

#email {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

#email::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-btn {
    padding: 0.8rem 1.5rem;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-btn:hover {
    background: #ff3333;
}

.form-message {
    color: #fff;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            circle at 20% 80%,
            rgba(0, 229, 255, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(170, 235, 255, 0.05) 0%,
            transparent 40%
        );
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-shadow: var(--neon-glow);
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.social-icon:hover {
    transform: scale(1.1);
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}

.developed-by {
    margin-top: 20px;
    text-align: center;
}

.developer-logo {
    height: 200px;
    transition: all 0.3s ease;
}

.developer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.7));
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 5%;
    }

    .footer-logo {
        font-size: 2rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-icon {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Mailchimp Form Styles */
#mc_embed_signup {
    background: transparent;
    clear: left;
    font: 14px 'Rajdhani', sans-serif;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

#mc_embed_signup h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

#mc_embed_signup .indicates-required {
    display: none;
}

#mc_embed_signup .mc-field-group {
    width: 100%;
    margin-bottom: 1rem;
}

#mc_embed_signup .mc-field-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--accent-color);
    background: rgba(26, 26, 36, 0.8);
    color: var(--text-color);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#mc_embed_signup .mc-field-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

#mc_embed_signup .button {
    width: 100%;
    padding: 12px 20px;
    background: var(--accent-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#mc_embed_signup .button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

#mc_embed_signup .response {
    margin-top: 1rem;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

#mc_embed_signup #mce-error-response {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

#mc_embed_signup #mce-success-response {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}