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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    gap: 0.75rem;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

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

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: white;
    background: linear-gradient(45deg, #667eea, #764ba2);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding-top: 70px; /* Account for fixed navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.9;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    color: white;
    text-align: left;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    height: 400px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-subheading {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-emphasis {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    font-style: italic;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.cta-button:active {
    transform: translateY(0);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.game-image-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.game-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.game-image:hover {
    transform: scale(1.02);
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #2c3e50;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.inspiration-note {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
    max-width: 600px;
    margin: 0 auto;
}

.inspiration-note p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

/* How to Play Section */
.how-to-play {
    padding: 80px 0;
    background: white;
}

.gameplay-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-3px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.flow-step h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.flow-step p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.flow-arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
    margin: 0 1rem;
}

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

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-3px);
}

.detail-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    padding: 0.5rem 0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.detail-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.detail-card li strong {
    color: #2c3e50;
}

/* Gameplay Section */
.gameplay {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.gameplay .section-title {
    color: white;
}

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

.highlight-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    color: #2c3e50;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
}

/* Why This Matters Section */
.why-matters {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.why-matters .section-title {
    color: white;
}

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

/* Two-column layout for why-matters */
.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.why-left {
    /* Left side styles */
}

.why-right {
    /* Right side styles */
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.why-right::before {
    content: "Content for right side";
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    text-align: center;
}
.why-right::before {
    content: "Content for right side";
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
.why-right {
    /* Right side styles */
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.why-right::before {
    content: "Content for right side";
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    text-align: center;
}}

.benefits-list {
    margin: 0 auto;
    list-style: none;
}

.benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Community CTA Section */
.community-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
}

.community-cta .section-title {
    color: white;
    margin-bottom: 1rem;
}

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

/* Mailchimp Form Styling */
#mc_embed_shell {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

#mc_embed_signup {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    backdrop-filter: blur(10px) !important;
    width: 100% !important;
    max-width: 500px !important;
    font-family: 'Poppins', sans-serif !important;
}

#mc_embed_signup h2 {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;    margin-bottom: 1rem !important;
    background: linear-gradient(45deg, #667eea, #764ba2) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

#mc_embed_signup .indicates-required {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;    margin-bottom: 1rem !important;
    font-size: 0.9rem !important;
    color: #666 !important;
    font-style: italic !important;
}

#mc_embed_signup .mc-field-group {
    margin-bottom: 1.5rem !important;
}

#mc_embed_signup .mc-field-group label {
    display: block !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 0.5rem !important;
    font-size: 1rem !important;
}

#mc_embed_signup .mc-field-group .asterisk {
    color: #ff6b6b !important;
}

#mc_embed_signup .mc-field-group input[type="email"] {
    width: 100% !important;
    padding: 15px 20px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-family: 'Poppins', sans-serif !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    background: white !important;
    color: #2c3e50 !important;
}

#mc_embed_signup .mc-field-group input[type="email"]:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

#mc_embed_signup .mc-field-group input[type="email"]::placeholder {
    color: #999 !important;
}

#mc_embed_signup .clear {
    text-align: center !important;
}
#mc_embed_signup .button {
    background: linear-gradient(45deg, #667eea, #764ba2) !important;
    color: white !important;
    border: none !important;
    width: 100% !important;
    padding: 15px 20px !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    height: auto !important;
    min-height: 50px !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

#mc_embed_signup .button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

#mc_embed_signup .button:active {
    transform: translateY(0) !important;
}

#mc_embed_signup .response {
    margin-top: 1rem !important;
    padding: 1rem !important;
    border-radius: 10px !important;
    font-weight: 500 !important;
    text-align: center !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

/* Only show response when it has content */
#mc_embed_signup .response:not(:empty) {
    display: flex !important;
}

#mc_embed_signup #mce-error-response {
    background: #ffebee !important;
    color: #c62828 !important;
    border: 1px solid #ffcdd2 !important;
    display: none !important;
}

#mc_embed_signup #mce-error-response:not(:empty) {
    display: flex !important;
}

#mc_embed_signup #mce-success-response {
    background: #e8f5e8 !important;
    color: #2e7d32 !important;
    border: 1px solid #c8e6c9 !important;
    display: none !important;
}

#mc_embed_signup #mce-success-response:not(:empty) {
    display: flex !important;
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.copyright {
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-logo {
        height: 250px;
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-subheading,
    .hero-emphasis {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .game-image {
        max-width: 90%;
    }
    
    .gameplay-flow {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .flow-step {
        max-width: 100%;
    }
    
    .gameplay-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    #mc_embed_signup {
        padding: 1.5rem !important;
        margin: 0 1rem !important;
    }
    
    #mc_embed_signup h2 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .highlight-card {
        padding: 20px 15px;
    }
    
    .benefits-list li {
        font-size: 1rem;
        padding-left: 25px;
    }
    
    .flow-step {
        padding: 1rem;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
    
    .game-image {
        max-width: 95%;
    }
    
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        height: 200px;
        max-width: 250px;
    }
    
    #mc_embed_signup {
        padding: 1rem !important;
        margin: 0 0.5rem !important;
    }
    
    #mc_embed_signup h2 {
        font-size: 1.3rem !important;
    }
}/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
    }
    
    .hero-background {
        background: #000;
    }
    
    .cta-button {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

@media (max-width: 768px) {
.why-right {
    /* Right side styles */
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.why-right::before {
    content: "Content for right side";
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    text-align: center;
}    
    .flow-step-compact {
        padding: 0.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .detail-card-compact {
        padding: 0.8rem !important;
    }
}

/* Additional specificity for Mailchimp button vertical centering */
#mc_embed_signup input[type="submit"].button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
    height: auto !important;
    min-height: 50px !important;
    vertical-align: middle !important;
    width: 100% !important;
    padding: 15px 20px !important;
    font-size: 1rem !important;
    letter-spacing: 0.5px !important;
}
#mc_embed_signup .clear input.button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
    height: auto !important;
    min-height: 50px !important;
    vertical-align: middle !important;
    width: 100% !important;
    padding: 15px 20px !important;
    font-size: 1rem !important;
    letter-spacing: 0.5px !important;
}
/* Force vertical centering with maximum specificity */
.community-cta #mc_embed_signup input[type="submit"].button,
.community-cta #mc_embed_signup .clear input.button,
.community-cta #mc_embed_signup .button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
    height: auto !important;
    min-height: 50px !important;
    vertical-align: middle !important;
    padding: 15px 20px !important;
    width: 100% !important;
    font-size: 1rem !important;
    letter-spacing: 0.5px !important;
}
/* Specific styling for mc-embedded-subscribe button ID */
#mc-embedded-subscribe {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
    height: auto !important;
    min-height: 50px !important;
    vertical-align: middle !important;
    width: 100% !important;
    padding: 15px 20px !important;
    font-size: 1rem !important;
    letter-spacing: 0.5px !important;
    background: linear-gradient(45deg, #667eea, #764ba2) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

#mc-embedded-subscribe:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

#mc-embedded-subscribe:active {
    transform: translateY(0) !important;
}
