* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #8B0000 0%, #FF6B6B 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.glowing-logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.glow-text {
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

@keyframes glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #8B0000;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    margin: 2rem 0;
}

.feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin: 0.5rem;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B0000 0%, #FF6B6B 100%);
    color: white;
}

.plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.plan-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.plan-card.premium {
    background: rgba(255,255,255,0.2);
    border: 2px solid #feca57;
    transform: scale(1.05);
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
    color: #feca57;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.features-list li {
    margin: 0.5rem 0;
    padding-left: 1rem;
}

.order-btn {
    background: #ff6b6b;
    border: none;
    padding: 1rem 2rem;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    font-size: 1.1rem;
}

.order-btn:hover {
    background: #ff5252;
}

.minimum-topup {
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 2rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 2% auto;
    padding: 1.5rem;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    background: #8B0000;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
}

.submit-btn:hover {
    background: #A52A2A;
}

.plan-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    font-weight: bold;
}

/* Payment Info */
.usdt-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
}

.copy-btn {
    background: #8B0000;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.copy-btn:hover {
    background: #A52A2A;
}

.teams-btn {
    background: #6264a7;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.teams-btn:hover {
    background: #5658a3;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-item i {
    font-size: 2rem;
    color: #8B0000;
    margin-bottom: 1rem;
}

.newsletter {
    text-align: center;
    margin: 3rem 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.newsletter-form button {
    background: #8B0000;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #A52A2A;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #8B0000;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: scale(1.1);
    background: #A52A2A;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 1rem;
    z-index: 3000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-btn {
    background: #8B0000;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-btn:hover {
    background: #A52A2A;
}

.cookie-btn.secondary {
    background: transparent;
    border: 1px solid #8B0000;
}

.cookie-btn.secondary:hover {
    background: rgba(139, 0, 0, 0.1);
}

/* Teams Chat */
.teams-chat {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: #6264a7;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Policy Modal */
.policy-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.policy-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.premium {
        transform: none;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .teams-chat {
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 1rem;
    }
}


/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #666;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 0.25rem;
}

.about-feature h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.about-feature p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Newsletter Gap */
.newsletter-gap {
    height: 1.5rem;
}

/* Policy Modal Improvements for Mobile */
.policy-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.policy-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .policy-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
        max-height: 85vh;
    }
    
    /* Easier modal closing on mobile */
    .policy-modal::before {
        content: '';
        position: fixed;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        z-index: 2001;
    }
    
    .close {
        position: fixed;
        top: 15px;
        right: 15px;
        font-size: 2rem;
        cursor: pointer;
        color: #333;
        background: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        z-index: 2002;
    }
}

@media (max-width: 480px) {
    .policy-content {
        margin: 5% auto;
        padding: 1rem;
        max-height: 90vh;
    }
    
    .close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}


/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 1rem;
    z-index: 3000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.cookie-btn:hover {
    background: #5a6fd8;
}

.cookie-btn.secondary {
    background: transparent;
    border: 1px solid #667eea;
}

.cookie-btn.secondary:hover {
    background: rgba(102, 126, 234, 0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 0.75rem 1.5rem;
        flex: 1;
        max-width: 150px;
    }
}

/* Glowing Logo */
.glowing-logo {
    font-size: 1.8rem;
    font-weight: 900; /* Bolder font weight */
}

.glow-text {
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.7);
    color: #2c3e50; /* Dark color as fallback */
    font-weight: 900; /* Extra bold */
}

@keyframes glow {
    0%, 100% { 
        background-position: 0% 50%; 
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.7);
    }
    50% { 
        background-position: 100% 50%; 
        text-shadow: 0 0 30px rgba(255, 107, 107, 0.9), 0 0 40px rgba(254, 202, 87, 0.6);
    }
}

/* Order Now Button */
.order-btn {
    background: linear-gradient(135deg, #2c3e50, #34495e); /* Dark background */
    border: none;
    padding: 1rem 2rem;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.order-btn:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4), 0 0 20px rgba(52, 152, 219, 0.3);
}

.order-btn:hover::before {
    left: 100%;
}

.order-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.3);
}

/* Premium plan button slight variation */
.plan-card.premium .order-btn {
    background: linear-gradient(135deg, #e67e22, #d35400);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.plan-card.premium .order-btn:hover {
    background: linear-gradient(135deg, #d35400, #e67e22);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4), 0 0 20px rgba(231, 76, 60, 0.3);
}

/* Glowing Logo */
.glowing-logo {
    font-size: 1.8rem;
    font-weight: 900; /* Bolder font weight */
}

.glow-text {
    background: linear-gradient(45deg, #ff4757, #ffa502, #2ed573, #3742fa, #5352ed);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 3s ease-in-out infinite;
    text-shadow: 
        0 0 20px rgba(255, 71, 87, 0.8),
        0 0 30px rgba(255, 165, 2, 0.6),
        0 0 40px rgba(46, 213, 115, 0.4);
    color: #1e272e; /* Very dark blue as fallback */
    font-weight: 900; /* Extra bold */
    letter-spacing: 1px;
}

@keyframes glow {
    0%, 100% { 
        background-position: 0% 50%; 
        text-shadow: 
            0 0 20px rgba(255, 71, 87, 0.8),
            0 0 30px rgba(255, 165, 2, 0.6),
            0 0 40px rgba(46, 213, 115, 0.4);
    }
    25% {
        background-position: 25% 50%;
        text-shadow: 
            0 0 25px rgba(255, 165, 2, 0.8),
            0 0 35px rgba(46, 213, 115, 0.6),
            0 0 45px rgba(55, 66, 250, 0.4);
    }
    50% { 
        background-position: 100% 50%; 
        text-shadow: 
            0 0 30px rgba(46, 213, 115, 0.8),
            0 0 40px rgba(55, 66, 250, 0.6),
            0 0 50px rgba(83, 82, 237, 0.4);
    }
    75% {
        background-position: 75% 50%;
        text-shadow: 
            0 0 25px rgba(55, 66, 250, 0.8),
            0 0 35px rgba(83, 82, 237, 0.6),
            0 0 45px rgba(255, 71, 87, 0.4);
    }
}

/* Alternative Deep Color Version - More Professional */
.deep-glow-text {
    background: linear-gradient(45deg, #ff6b6b, #ff9ff3, #54a0ff, #5f27cd);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: deep-glow 4s ease-in-out infinite;
    text-shadow: 
        0 0 25px rgba(255, 107, 107, 0.7),
        0 0 35px rgba(255, 159, 243, 0.5),
        0 0 45px rgba(84, 160, 255, 0.3);
    color: #2f3542; /* Deep dark blue as fallback */
    font-weight: 900;
    letter-spacing: 1px;
}

@keyframes deep-glow {
    0%, 100% { 
        background-position: 0% 50%; 
        text-shadow: 
            0 0 25px rgba(255, 107, 107, 0.7),
            0 0 35px rgba(255, 159, 243, 0.5),
            0 0 45px rgba(84, 160, 255, 0.3);
    }
    33% {
        background-position: 33% 50%;
        text-shadow: 
            0 0 30px rgba(255, 159, 243, 0.7),
            0 0 40px rgba(84, 160, 255, 0.5),
            0 0 50px rgba(95, 39, 205, 0.3);
    }
    66% { 
        background-position: 66% 50%; 
        text-shadow: 
            0 0 35px rgba(84, 160, 255, 0.7),
            0 0 45px rgba(95, 39, 205, 0.5),
            0 0 55px rgba(255, 107, 107, 0.3);
    }
}

/* Ultra Deep Professional Version */
.ultra-deep-glow-text {
    background: linear-gradient(45deg, #ff3838, #ff9f1a, #17c0eb, #7158e2, #3d3d3d);
    background-size: 500% 500%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ultra-glow 5s ease-in-out infinite;
    text-shadow: 
        0 0 30px rgba(255, 56, 56, 0.8),
        0 0 40px rgba(255, 159, 26, 0.6),
        0 0 50px rgba(23, 192, 235, 0.4),
        0 0 60px rgba(113, 88, 226, 0.2);
    color: #1e272e; /* Deepest dark */
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@keyframes ultra-glow {
    0%, 100% { 
        background-position: 0% 50%; 
        text-shadow: 
            0 0 30px rgba(255, 56, 56, 0.8),
            0 0 40px rgba(255, 159, 26, 0.6),
            0 0 50px rgba(23, 192, 235, 0.4);
    }
    20% {
        background-position: 20% 50%;
        text-shadow: 
            0 0 35px rgba(255, 159, 26, 0.8),
            0 0 45px rgba(23, 192, 235, 0.6),
            0 0 55px rgba(113, 88, 226, 0.4);
    }
    40% {
        background-position: 40% 50%;
        text-shadow: 
            0 0 40px rgba(23, 192, 235, 0.8),
            0 0 50px rgba(113, 88, 226, 0.6),
            0 0 60px rgba(61, 61, 61, 0.4);
    }
    60% { 
        background-position: 60% 50%; 
        text-shadow: 
            0 0 45px rgba(113, 88, 226, 0.8),
            0 0 55px rgba(61, 61, 61, 0.6),
            0 0 65px rgba(255, 56, 56, 0.4);
    }
    80% {
        background-position: 80% 50%;
        text-shadow: 
            0 0 40px rgba(61, 61, 61, 0.8),
            0 0 50px rgba(255, 56, 56, 0.6),
            0 0 60px rgba(255, 159, 26, 0.4);
    }
}

/* About Section Glowing Text */
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff3838, #ff9f1a, #17c0eb, #7158e2, #3d3d3d);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: about-glow 4s ease-in-out infinite;
    text-shadow: 
        0 0 25px rgba(255, 56, 56, 0.7),
        0 0 35px rgba(255, 159, 26, 0.5),
        0 0 45px rgba(23, 192, 235, 0.3);
    color: #1e272e;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
}

@keyframes about-glow {
    0%, 100% { 
        background-position: 0% 50%; 
        text-shadow: 
            0 0 25px rgba(255, 56, 56, 0.7),
            0 0 35px rgba(255, 159, 26, 0.5),
            0 0 45px rgba(23, 192, 235, 0.3);
    }
    25% {
        background-position: 25% 50%;
        text-shadow: 
            0 0 30px rgba(255, 159, 26, 0.7),
            0 0 40px rgba(23, 192, 235, 0.5),
            0 0 50px rgba(113, 88, 226, 0.3);
    }
    50% { 
        background-position: 100% 50%; 
        text-shadow: 
            0 0 35px rgba(23, 192, 235, 0.7),
            0 0 45px rgba(113, 88, 226, 0.5),
            0 0 55px rgba(61, 61, 61, 0.3);
    }
    75% {
        background-position: 75% 50%;
        text-shadow: 
            0 0 30px rgba(113, 88, 226, 0.7),
            0 0 40px rgba(61, 61, 61, 0.5),
            0 0 50px rgba(255, 56, 56, 0.3);
    }
}

/* About Feature Icons Glow */
.about-feature i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 0.25rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.about-feature:hover i {
    color: #ff6b6b;
    text-shadow: 
        0 0 15px rgba(255, 107, 107, 0.8),
        0 0 25px rgba(255, 107, 107, 0.4);
    transform: scale(1.1);
}

.about-feature:hover h3 {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: feature-glow 2s ease-in-out infinite;
}

@keyframes feature-glow {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}



/* CTA Button Deep Color & Animation */
.cta-button {
    background: linear-gradient(135deg, #1e3c72, #2a5298, #667eea, #764ba2);
    background-size: 300% 300%;
    border: none;
    padding: 1.2rem 2.5rem;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 6px 20px rgba(30, 60, 114, 0.4),
        0 0 30px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: cta-gradient 4s ease infinite;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

@keyframes cta-gradient {
    0%, 100% { 
        background-position: 0% 50%; 
        box-shadow: 
            0 6px 20px rgba(30, 60, 114, 0.4),
            0 0 30px rgba(102, 126, 234, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    25% {
        background-position: 25% 50%;
        box-shadow: 
            0 6px 25px rgba(42, 82, 152, 0.5),
            0 0 35px rgba(102, 126, 234, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        background-position: 100% 50%; 
        box-shadow: 
            0 6px 30px rgba(102, 126, 234, 0.6),
            0 0 40px rgba(118, 75, 162, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    75% {
        background-position: 75% 50%;
        box-shadow: 
            0 6px 25px rgba(118, 75, 162, 0.5),
            0 0 35px rgba(30, 60, 114, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    animation-duration: 2s;
    box-shadow: 
        0 8px 35px rgba(30, 60, 114, 0.6),
        0 0 50px rgba(102, 126, 234, 0.5),
        0 0 60px rgba(118, 75, 162, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
    animation-duration: 1s;
    box-shadow: 
        0 4px 15px rgba(30, 60, 114, 0.5),
        0 0 25px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Pulse animation for extra attention */
@keyframes cta-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-button {
    animation: 
        cta-gradient 4s ease infinite,
        cta-pulse 3s ease-in-out infinite;
}

.cta-button:hover {
    animation: 
        cta-gradient 2s ease infinite,
        cta-pulse 1.5s ease-in-out infinite;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        animation: 
            cta-gradient 5s ease infinite,
            cta-pulse 4s ease-in-out infinite;
    }
    
    .cta-button:hover {
        animation: 
            cta-gradient 3s ease infinite,
            cta-pulse 2s ease-in-out infinite;
    }
}

/* Order Now Button - Fixed for Mobile */
.order-btn {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460) !important;
    border: none;
    padding: 1rem 1.5rem;
    color: white !important;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.6) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Premium plan buttons */
.plan-card.premium .order-btn {
    background: linear-gradient(135deg, #b71540, #e55039, #eb2f06) !important;
    box-shadow: 0 4px 15px rgba(183, 21, 64, 0.6) !important;
}

/* Remove all animations and transitions on mobile */
@media (max-width: 768px) {
    .order-btn {
        /* Deep dark blue gradient - same as desktop but static */
        background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460) !important;
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        min-height: 48px;
        margin: 0 auto;
        max-width: 200px;
        /* Remove all animations and transforms */
        transform: none !important;
        transition: none !important;
        animation: none !important;
        /* Ensure deep color is visible */
        opacity: 1 !important;
        visibility: visible !important;
        /* Strong shadow for depth */
        box-shadow: 0 4px 12px rgba(10, 25, 47, 0.7) !important;
    }
    
    .plan-card.premium .order-btn {
        background: linear-gradient(135deg, #b71540, #e55039, #eb2f06) !important;
        box-shadow: 0 4px 12px rgba(183, 21, 64, 0.7) !important;
    }
    
    /* Remove all pseudo-elements that might cause issues */
    .order-btn::before,
    .order-btn::after {
        display: none !important;
        content: none !important;
    }
    
    /* Simple active state for mobile */
    .order-btn:active {
        transform: scale(0.98) !important;
        box-shadow: 0 2px 8px rgba(10, 25, 47, 0.8) !important;
    }
    
    .plan-card.premium .order-btn:active {
        box-shadow: 0 2px 8px rgba(183, 21, 64, 0.8) !important;
    }
}

@media (max-width: 480px) {
    .order-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        min-height: 45px;
        max-width: 180px;
        background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460) !important;
    }
    
    .plan-card.premium .order-btn {
        background: linear-gradient(135deg, #b71540, #e55039, #eb2f06) !important;
    }
}

/* Plans grid mobile fixes */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .plan-card {
        padding: 1.5rem;
        background: rgba(255,255,255,0.1);
        backdrop-filter: none; /* Remove backdrop filter on mobile */
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .plan-card.premium {
        order: -1;
        border: 2px solid #feca57;
    }
}

/* Force hardware acceleration for smooth scrolling */
.plans-section,
.plans-grid,
.plan-card,
.order-btn {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Remove any gradient animations globally on mobile */
@media (max-width: 768px) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .order-btn {
        background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460) !important;
    }
    
    .plan-card.premium .order-btn {
        background: linear-gradient(135deg, #b71540, #e55039, #eb2f06) !important;
    }
}

/* Emergency mobile fix - override everything */
@media (max-width: 768px) {
    .plans .order-btn {
        background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460) !important;
        color: white !important;
        border: none !important;
        box-shadow: 0 4px 12px rgba(10, 25, 47, 0.7) !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .plans .plan-card.premium .order-btn {
        background: linear-gradient(135deg, #b71540, #e55039, #eb2f06) !important;
        box-shadow: 0 4px 12px rgba(183, 21, 64, 0.7) !important;
    }
}


/* Payment Modal Styles */
.payment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f3f4;
}

.payment-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.payment-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.step-number {
    width: 35px;
    height: 35px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.step-description {
    color: #666;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
}

.usdt-address-container {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    margin: 0.5rem 0;
}

.usdt-address {
    margin-bottom: 0.75rem;
}

.usdt-address code {
    background: #2c3e50;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    display: block;
    border: 1px solid #34495e;
}

.copy-btn {
    background: #34495e;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
    width: 100%;
}

.copy-btn:hover {
    background: #2c3e50;
}

.copy-btn i {
    margin-right: 0.5rem;
}

.step-list {
    margin: 0.5rem 0;
    padding-left: 1.2rem;
    color: #666;
}

.step-list li {
    margin-bottom: 0.25rem;
}

.teams-btn {
    background: #6264a7;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    margin: 0.5rem 0;
}

.teams-btn:hover {
    background: #5658a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(98, 100, 167, 0.3);
}

.teams-btn i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.teams-note {
    font-size: 0.85rem;
    color: #666;
    margin: 0.5rem 0 0 0;
    text-align: center;
    font-style: italic;
}

.payment-note {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.payment-note i {
    color: #2196f3;
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.payment-note p {
    margin: 0;
    color: #1565c0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .payment-header h2 {
        font-size: 1.3rem;
    }
    
    .payment-step {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.75rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .usdt-address code {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    .copy-btn,
    .teams-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .payment-note {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 5% auto;
        padding: 1.25rem;
        width: 95%;
    }
    
    .payment-step {
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .usdt-address code {
        font-size: 0.75rem;
        padding: 0.5rem 0.6rem;
    }
}
