/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e63946; /* Changed from #ff4d4d */
    --secondary: #2d132c; /* Changed from #1a001e */
    --accent: #f4a261; /* Changed from #00cc99 */
    --telegram: #0088cc; /* Unchanged */
    --discord: #7289da; /* Unchanged */
}

body {
    font-family: 'Oswald', sans-serif;
    background: linear-gradient(135deg, var(--secondary), #5c2c6d); /* Updated gradient */
    color: #f5f5f5; /* Changed from #fff */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
header {
ávido    background: var(--secondary);
    padding: 2rem 0;
    text-align: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.new-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 1rem;
}

.flix-logo-text {
    background: var(--primary);
    color: #d9e4e6 !important; /* Changed from #e2ebec */
    display: inline-block;
    padding: 0 9px;
    height: 4rem;
    font-size: 3.2rem;
    line-height: 1.2;
    border-radius: 3px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.new-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.tagline {
    font-size: 1.2rem;
    color: #e0e0e0; /* Changed from #ddd */
    margin-top: 0;
}

/* Premium Button Container */
.premium-btn-container {
    text-align: center;
    margin: 2.5rem 0;
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--secondary);
    padding: 1.25rem 3.75rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    transition: background 0.3s, transform 0.2s;
}

.enhanced-btn {
   _xlim    border: 2px solid #f5f5f5; /* Changed from #fff */
    box-shadow: 0 0.375rem 1.25rem rgba(244, 162, 97, 0.5); /* Updated to match new accent */
    background: linear-gradient(45deg, var(--accent), #f7b267); /* Updated gradient */
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.large-btn {
    font-size: 1.75rem;
    padding: 1.5rem 4.375rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.625rem 1.875rem rgba(244, 162, 97, 0.6); /* Updated to match new accent */
    font-weight: 900;
}

.enhanced-btn span {
    position: relative;
    z-index: 1;
}

.enhanced-btn:hover {
    background: linear-gradient(45deg, #e76f51, var(--accent)); /* Updated gradient */
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.75rem 2.1875rem rgba(244, 162, 97, 0.8); /* Updated to match new accent */
}

.enhanced-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 245, 0.2); /* Changed from #fff */
    transition: left 0.4s ease;
}

.enhanced-btn:hover::before {
    left: 100%;
}

.premium-btn i {
    margin: 0 0.9375rem;
    transition: transform 0.3s;
}

.premium-btn:hover i.fa-arrow-circle-right {
    transform: translateX(0.5rem);
}

.premium-btn:hover i.fa-gem {
    transform: rotate(360deg);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 0.9375rem;
    margin: 1.25rem 0;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: #f5f5f5; /* Changed from #fff */
    padding: 0.75rem 1.5625rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
    min-width: 10rem;
    text-align: center;
}

.cta-btn:hover {
    background: #d00000; /* Changed from #ff3333 */
    transform: scale(1.05);
}

.cta-btn i {
    margin-right: 0.5rem;
}

.btn-1 { background: var(--primary); }
.btn-11 { background: #c71585; } /* Changed from #e91e63 */
.btn-2 { background: #f48c06; } /* Changed from #ff9800 */
.btn-3 { background: #7209b7; } /* Changed from #9C27B0 */
.btn-4 { background: var(--telegram); }
.btn-5 { background: var(--discord); }

.btn-4:hover { background: #0077b3; } /* Unchanged */
.btn-5:hover { background: #5f73c1; } /* Unchanged */

/* Share Section */
.sharesbt {
    text-align: center;
    margin: 1.25rem 0;
    padding: 0.9375rem;
    background: #4a1a5c; /* Changed from #310d4f */
    border-radius: 0.625rem;
}

.sharesbt span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.625rem;
    display: block;
}

.sharethis, .share-icons-fallback {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #f5f5f5; /* Changed from #fff */
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s, background 0.3s;
}

.share-icon:hover {
    transform: scale(1.1);
}

/* Share icon colors remain unchanged */
.share-icon.fb { background: #3b5998; color: #fff; }
.share-icon.tw { background: #000; color: #fff; }
.share-icon.wa { background: #25D366; color: #fff; }
.share-icon.tg { background: var(--telegram); color: #fff; }
.share-icon.rd { background: #ff4500; color: #fff; }
.share-icon.ig { background: #e4405f; color: #fff; }
.share-icon.tk { background: #000; color: #fff; }
.share-icon.th { background: #000; color: #fff; }
.share-icon.bs { background: #0084ff; color: #fff; }

/* Benefits Section */
.benefits-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5625rem;
    background: rgba(45, 19, 44, 0.9); /* Changed from rgba(26, 0, 30, 0.9) */
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.benefits-section h2 {
    font-size: 1.5rem;
    margin: 1.5625rem 0 0.9375rem;
    color: #f5f5f5; /* Changed from #fff */
}

.benefits-section p {
    margin-bottom: 0.9375rem;
    color: #d0d0d0; /* Changed from #bbb */
}

.benefits-section ul {
    list-style: none;
    margin-left: 1.5625rem;
}

.benefits-section ul li {
    position: relative;
    padding-left: 1.5625rem;
    margin-bottom: 0.625rem;
}

.benefits-section ul li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.benefits-section li strong {
    color: var(--primary);
}

/* Footer */
footer {
    text-align: center;
    padding: 1.25rem 0;
    background: var(--secondary);
    margin-top: 1.875rem;
}

footer p {
    font-size: 1rem;
    color: #d0d0d0; /* Changed from #bbb */
}

/* Responsive Design */
@media (max-width: 480px) {
    .flix-logo-text {
        font-size: 2rem;
        height: 3rem;
    }
    .tagline {
        font-size: 1rem;
    }
    .premium-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    .large-btn {
        font-size: 1.25rem;
        padding: 1rem 2.5rem;
    }
    .cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-width: 8rem;
    }
    .sharesbt span {
        font-size: 1.1rem;
    }
    .share-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    .benefits-section {
        padding: 1rem;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .benefits-section h2 {
        font-size: 1.2rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .flix-logo-text {
        font-size: 2.5rem;
        height: 3.5rem;
    }
    .premium-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    .large-btn {
        font-size: 1.5rem;
        padding: 1.25rem 3rem;
    }
    .cta-btn {
        padding: 0.625rem 1.25rem;
        font-size: 1rem;
    }
    .share-icon {
        width: 2.25rem;
        height: 2.25rem;
    }
    .benefits-section {
        max-width:  leftist: 95%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .premium-btn {
        padding: 1.125rem 3rem;
    }
    .large-btn {
        font-size: 1.65rem;
        padding: 1.375rem 3.5rem;
    }
    .cta-btn {
        padding: 0.75rem 1.5rem;
    }
    .benefits-section {
        max-width: 92%;
    }
}