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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1554 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Age Warning Banner */
.age-warning {
    background: rgba(220, 38, 38, 0.9);
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 13, 46, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.header.scrolled {
    background: rgba(26, 13, 46, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    max-width: unset;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-link:hover {
    color: #ff6b9d;
}

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

.nav-link:hover::after {
    width: 100%;
}

.header-cta .btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff6b9d;
}

.btn-secondary:hover {
    background: #ff6b9d;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    min-height: 56px;
}

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

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Game Description Section */
.game-description {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-top: 1px solid rgba(255, 107, 157, 0.2);
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.description-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.description-text h2 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2.8rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: left;
    margin: 0;
}

.description-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    transform: translateX(10px);
    background: rgba(255, 107, 157, 0.1);
    border-color: #ff6b9d;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.2);
}

.highlight-item i {
    font-size: 2rem;
    color: #ff6b9d;
    min-width: 40px;
    text-align: center;
}

.highlight-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ff6b9d;
    font-weight: bold;
}

/* Tables */
.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(255, 107, 157, 0.1);
    padding: 20px;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
    border-left: 1px solid rgba(255, 107, 157, 0.2);
    border-right: 1px solid rgba(255, 107, 157, 0.2);
    transition: background 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 107, 157, 0.05);
}

.table-row:last-child {
    border-radius: 0 0 10px 10px;
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.col {
    padding: 0 10px;
}

/* Features Section */
.features {
    background: rgba(0, 0, 0, 0.2);
}

.features-table .table-header {
    grid-template-columns: 1fr 1fr 1fr;
}

.features-table .table-row {
    grid-template-columns: 1fr 1fr 1fr;
}

.features-note {
    text-align: center;
    margin-top: 30px;
    color: #cccccc;
    font-style: italic;
}

.features-note a {
    color: #ff6b9d;
    text-decoration: none;
}

.features-note a:hover {
    text-decoration: underline;
}

/* Modes Section */
.modes-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.mode-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.mode-card.blue {
    border-color: #4a90e2;
}

.mode-card.purple {
    border-color: #8a2be2;
}

.mode-card.gold {
    border-color: #ffd700;
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mode-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.mode-card.blue .mode-icon {
    color: #4a90e2;
}

.mode-card.purple .mode-icon {
    color: #8a2be2;
}

.mode-card.gold .mode-icon {
    color: #ffd700;
}

.mode-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.mode-card p {
    color: #cccccc;
}

.modes-table .table-header {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.modes-table .table-row {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.modes-note {
    text-align: center;
    margin-top: 30px;
    color: #cccccc;
    font-style: italic;
}

.modes-note a {
    color: #ff6b9d;
    text-decoration: none;
}

.modes-note a:hover {
    text-decoration: underline;
}

/* Card Types Section */
.card-types {
    background: rgba(0, 0, 0, 0.2);
}

.card-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.card-type {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.card-type.common {
    border-color: #cccccc;
}

.card-type.rare {
    border-color: #4a90e2;
}

.card-type.legendary {
    border-color: #ffd700;
}

.card-type.coin {
    border-color: #ff6b9d;
}

.card-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card-type.common .card-icon {
    color: #cccccc;
}

.card-type.rare .card-icon {
    color: #4a90e2;
}

.card-type.legendary .card-icon {
    color: #ffd700;
}

.card-type.coin .card-icon {
    color: #ff6b9d;
}

.card-type h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-type p {
    color: #cccccc;
}

.card-types-table .table-header {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.card-types-table .table-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.card-types-note {
    text-align: center;
    margin-top: 30px;
    color: #cccccc;
    font-style: italic;
}

/* Bets and RTP Section */
.highlight-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-item {
    background: rgba(255, 107, 157, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #ff6b9d;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #cccccc;
}

.bets-table .table-header {
    grid-template-columns: 1fr 1fr 1fr;
}

.bets-table .table-row {
    grid-template-columns: 1fr 1fr 1fr;
}

.bets-note {
    text-align: center;
    margin-top: 30px;
    color: #cccccc;
    font-style: italic;
}

/* Progression Section */
.progression {
    background: rgba(0, 0, 0, 0.2);
}

.progression-table .table-header {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.progression-table .table-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.progression-note {
    text-align: center;
    margin-top: 30px;
    color: #cccccc;
    font-style: italic;
}

/* UX Design Section */
.ux-table .table-header {
    grid-template-columns: 1fr 1fr;
}

.ux-table .table-row {
    grid-template-columns: 1fr 1fr;
}

.ux-note {
    text-align: center;
    margin: 30px 0;
    color: #cccccc;
    font-style: italic;
}

.ux-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    background: rgba(0, 0, 0, 0.2);
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #cccccc;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    font-size: 2rem;
    color: #ff6b9d;
}

.author-name {
    font-weight: bold;
    color: #ff6b9d;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 157, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.modes-table, .card-types-table, .progression-table {
    overflow-x: auto;
}

.faq-answer p {
    padding: 10px 20px 20px;
    color: #cccccc;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 107, 157, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.footer-payment {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    font-size: 1.5rem;
    color: #cccccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 157, 0.1);
    color: #cccccc;
}

.responsibility-text {
    margin-top: 10px;
    font-weight: bold;
    color: #ff6b9d;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta .btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 0;
    flex-direction: column;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 107, 157, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .description-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .description-text h2 {
        text-align: center;
        font-size: 2.2rem;
    }
    
    .description-text p {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .col {
        padding: 10px 0;
    }

}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .description-text h2 {
        font-size: 1.8rem;
    }
    
    .description-text p {
        font-size: 1rem;
    }
    
    .highlight-item {
        padding: 15px;
        gap: 15px;
    }
    
    .highlight-item i {
        font-size: 1.5rem;
        min-width: 30px;
    }
    
    .highlight-item span {
        font-size: 1rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .modes-cards,
    .card-types-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-stats {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-payment {
        justify-content: center;
    }
    
    .ux-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sticky-cta .btn {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 13, 46, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 107, 157, 0.2);
    }
    
    .nav.active .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav.active .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 107, 157, 0.1);
    }
}

/* Smooth animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Section Images */
.features-image,
.modes-image,
.card-types-image,
.ux-image {
    margin: 40px 0;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.features-image img,
.modes-image img,
.card-types-image img,
.ux-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.features-image img:hover,
.modes-image img:hover,
.card-types-image img:hover,
.ux-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .features-image,
    .modes-image,
    .card-types-image,
    .ux-image {
        margin: 30px 0;
        padding: 15px;
    }
}