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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
.section__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.3);
}

.section__subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #b8860b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn--primary {
    background: linear-gradient(135deg, #8b0000, #dc143c);
    color: #fff;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

.btn--secondary {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

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

.btn--outline:hover {
    background: #d4af37;
    color: #000;
}

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

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn__icon {
    font-size: 1.2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

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

.nav__link {
    color: #f5f5dc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
    color: #d4af37;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    transition: 0.3s;
    transform-origin: center;
}

.nav__close {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #f5f5dc;
}

.hero__subtitle {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #c5c5c5;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero__stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.stat__label {
    font-size: 0.9rem;
    color: #b8860b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__image {
    position: relative;
    text-align: center;
}

.hero__img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.hero__decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration {
    position: absolute;
    background: linear-gradient(135deg, #d4af37, transparent);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.decoration--1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.decoration--2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.decoration--3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(45, 24, 16, 0.8));
}

.features__grid {
    display: grid;
    gap: 4rem;
}

.feature__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.feature__card--reverse {
    direction: rtl;
}

.feature__card--reverse > * {
    direction: ltr;
}

.feature__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.feature__text {
    color: #c5c5c5;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature__link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.feature__link:hover {
    color: #ffd700;
}

/* Promotions Section */
.promotions {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.8), rgba(10, 10, 10, 0.8));
}

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

.promo__card {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.promo__card--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(212, 175, 55, 0.05));
    border-color: #dc143c;
}

.promo__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #dc143c, #8b0000);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.promo__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.promo__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.promo__description {
    color: #c5c5c5;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.promo__features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.promo__features li {
    color: #b8860b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.promo__reward {
    text-align: center;
    margin-bottom: 1.5rem;
}

.reward__amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.reward__text {
    color: #b8860b;
    font-size: 0.9rem;
}

.promo__percentage {
    text-align: center;
    margin-bottom: 1.5rem;
}

.percentage__number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.percentage__text {
    color: #b8860b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.daily__rewards {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.reward__day {
    text-align: center;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    flex: 1;
    margin: 0 0.5rem;
}

.reward__day span:first-child {
    display: block;
    color: #b8860b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.reward__day span:last-child {
    font-weight: 700;
    color: #d4af37;
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 11, 26, 0.9));
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text .section__title {
    text-align: left;
    margin-bottom: 2rem;
}

.about__description {
    font-size: 1.1rem;
    color: #c5c5c5;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.about__features {
    margin-bottom: 3rem;
}

.about__feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature__info h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature__info p {
    color: #c5c5c5;
    line-height: 1.6;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat__item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat__item .stat__number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat__item .stat__label {
    color: #b8860b;
    font-size: 0.9rem;
}

.about__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* Support Section */
.support {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.8), rgba(26, 11, 26, 0.8));
}

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

.support__card {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.support__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

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

.support__title {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.support__description {
    color: #c5c5c5;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support__link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support__link:hover {
    color: #ffd700;
}

.support__phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

/* FAQ Section */
.faq__section {
    margin-top: 4rem;
}

.faq__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq__item {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq__item h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq__item p {
    color: #c5c5c5;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(212, 175, 55, 0.1));
    text-align: center;
}

.cta__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

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

.cta__actions {
    margin-bottom: 1rem;
}

.cta__info small {
    color: #b8860b;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a0b1a);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 400px;
}

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

.footer__logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

.footer__description {
    color: #c5c5c5;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social__link:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

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

.footer__heading {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__list a {
    color: #c5c5c5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__list a:hover {
    color: #d4af37;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright p {
    color: #b8860b;
    margin-bottom: 0.5rem;
}

.footer__disclaimer {
    font-size: 0.9rem;
    color: #8b7355;
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a {
    color: #b8860b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: #d4af37;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
    }
    
    .nav__menu.show {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav__close {
        display: block;
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 1.5rem;
        color: #d4af37;
        cursor: pointer;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__actions .btn {
        display: none;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .feature__card,
    .feature__card--reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo__card--featured {
        grid-column: span 1;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .feature__card {
        padding: 2rem 1.5rem;
    }
    
    .promo__card {
        padding: 1.5rem;
    }
    
    .support__grid {
        grid-template-columns: 1fr;
    }
    
    .faq__grid {
        grid-template-columns: 1fr;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about__stats {
        grid-template-columns: 1fr;
    }
    
    .daily__rewards {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reward__day {
        margin: 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

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

.slide-up {
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Scroll animations */
.scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a0b1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffd700, #d4af37);
}

/* Selection color */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: #fff;
}