* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid #d4af37;
}

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

.nav-logo .logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.3);
}

.nav-logo span {
    color: #ffffff;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-link:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('../images/casino_bg.png') center/cover no-repeat;
    overflow: hidden;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    flex: 1;
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #d4af37, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary, .btn-secondary {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

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

.btn-secondary:hover {
    background: #d4af37;
    color: #000000;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 5px;
}

.feature-text {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    flex: 1;
    text-align: center;
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Welcome Bonus */
.welcome-bonus {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    z-index: 2;
}

.bonus-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.bonus-image {
    flex: 1;
}

.bonus-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.bonus-text {
    flex: 1;
}

.bonus-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 20px;
}

.bonus-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.bonus-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.bonus-list {
    list-style: none;
    margin-bottom: 40px;
}

.bonus-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.btn-bonus {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-bonus:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

/* Sections */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 60px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.about-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 60px;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.stat-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.game-category {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.5));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.game-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.game-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.game-category p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.game-features span {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Advantages Section */
.advantages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.advantage-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.advantage-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.advantage-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.btn-outline:hover {
    background: #000000;
    color: #ffd700;
}

.large {
    padding: 20px 45px;
    font-size: 1.2rem;
}

/* Guide Section */
.guide-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.step-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #ffd700, #d4af37);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.footer-main {
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo .footer-logo-image {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

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

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.footer-logo span {
    color: #ffffff;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    border-radius: 50%;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.footer-links h4 {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-contact h4 {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border-left: 3px solid #d4af37;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.contact-details strong {
    color: #d4af37;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.contact-details p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000000;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.footer-cta span {
    font-size: 1.2rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.8);
    padding: 25px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-copyright p {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
    color: #999999;
    font-size: 0.9rem;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-label {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons span {
    font-size: 1.5rem;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.payment-icons span:hover {
    filter: grayscale(0);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Page Hero */
.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    margin-top: 80px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #d4af37;
    text-align: center;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Registration Guide Styles */
.registration-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.registration-benefits {
    margin-top: 50px;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #e0e0e0;
    line-height: 1.8;
}

/* Registration Requirements */
.registration-requirements {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.requirement-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

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

.req-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.requirement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

/* Step by Step Guide */
.step-by-step-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.detailed-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step-detail {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.step-header {
    display: flex;
    align-items: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.step-detail .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    margin-right: 20px;
}

.step-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #d4af37;
}

.step-content {
    padding: 30px;
}

.step-content p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.step-tips {
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    margin-top: 20px;
}

.step-tips h4 {
    color: #d4af37;
    margin-bottom: 10px;
}

.step-tips ul {
    list-style: none;
    margin: 0;
}

.step-tips li {
    color: #e0e0e0;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.step-tips li:before {
    content: "•";
    color: #d4af37;
    position: absolute;
    left: 0;
}

/* Login specific styles */
.login-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

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

.login-methods {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.method-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.method-card.featured {
    border: 2px solid #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.3));
}

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

.method-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.method-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.featured-text {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.method-steps {
    margin-top: 20px;
}

.method-steps .step {
    background: rgba(212, 175, 55, 0.1);
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    color: #e0e0e0;
}

/* FAQ Styles */
.faq-section, .login-faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
    color: #d4af37;
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: bold;
    width: 30px;
    text-align: center;
}

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

.faq-answer p {
    padding: 0 30px 20px;
    color: #e0e0e0;
    line-height: 1.6;
}

/* CTA Sections */
.cta-registration, .cta-login {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    text-align: center;
}

.cta-registration h2, .cta-login h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
}

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

.cta-features span {
    color: #333333;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Troubleshooting */
.troubleshooting {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.trouble-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.trouble-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.trouble-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 15px;
    text-align: center;
}

.solution h4 {
    color: #d4af37;
    margin-bottom: 10px;
}

.solution ol, .solution ul {
    color: #e0e0e0;
    padding-left: 20px;
}

.solution li {
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Security Tips */
.security-tips {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.security-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

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

.security-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.security-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    text-align: center;
}

.tips-list {
    margin-top: 20px;
}

.tip {
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 15px;
    margin: 8px 0;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Active nav link */
.nav-link.active {
    color: #d4af37;
}

/* Form Field Styles */
.form-fields {
    margin: 20px 0;
}

.field-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.field-item strong {
    color: #d4af37;
    display: block;
    margin-bottom: 5px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    color: #d4af37;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-field input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.security-feature {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.security-feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 15px;
    text-align: center;
}

.security-feature p {
    color: #e0e0e0;
    line-height: 1.6;
    text-align: center;
}

/* Login steps specific styles */
.login-steps {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.step-item .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.otp-process {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.otp-step {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    color: #e0e0e0;
}

.success-benefits {
    margin-top: 20px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.benefit {
    background: rgba(212, 175, 55, 0.1);
    padding: 12px;
    border-radius: 6px;
    color: #e0e0e0;
    border-left: 3px solid #d4af37;
}

.success-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.success-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    padding: 10px 15px;
    border-radius: 20px;
}

.success-features .feature-icon {
    font-size: 1.2rem;
    margin: 0;
}

.success-features span {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.login-form-preview {
    max-width: 400px;
    margin: 20px 0;
}

.security-process {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.security-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.security-step .security-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.security-step p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Promotions Page Styles */
.featured-promotion {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.promo-banner {
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.promo-content {
    flex: 1;
}

.promo-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.promo-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-item strong {
    color: #d4af37;
    display: block;
    font-size: 1.1rem;
}

.highlight-item small {
    color: #cccccc;
    font-size: 0.9rem;
}

.btn-promo-claim {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    margin-top: 20px;
}

.btn-promo-claim:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.promo-image {
    flex: 1;
}

.promo-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Promotions Grid */
.promotions-grid {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.promo-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.promo-card.vip {
    border-color: #9b59b6;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(0, 0, 0, 0.5));
}

.promo-card.popular {
    border-color: #e74c3c;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(0, 0, 0, 0.5));
}

.promo-card.hot {
    border-color: #f39c12;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(0, 0, 0, 0.5));
}

.promo-card.special {
    border-color: #e67e22;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(0, 0, 0, 0.5));
}

.promo-header {
    padding: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.promo-type {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.promo-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.promo-details {
    padding: 25px;
}

.promo-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 15px;
}

.promo-benefits {
    list-style: none;
    margin: 20px 0;
}

.promo-benefits li {
    padding: 8px 0;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.promo-action {
    padding: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-promo {
    padding: 12px 25px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.promo-time {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
}

.promo-status {
    color: #27ae60;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Bonus Terms */
.bonus-terms {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.terms-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.terms-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 20px;
}

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

.terms-list li {
    padding: 10px 0;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    padding-left: 20px;
}

.terms-list li:before {
    content: "•";
    color: #d4af37;
    position: absolute;
    left: 0;
}

.game-contribution {
    display: grid;
    gap: 15px;
}

.contrib-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.contrib-item strong {
    color: #e0e0e0;
}

.rate {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
}

.terms-notice {
    background: rgba(255, 107, 107, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    text-align: center;
}

.terms-notice h4 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

/* Promo Tips */
.promo-tips {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.tip-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

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

.tip-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 15px;
}

/* VIP Program */
.vip-program {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.vip-level {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.vip-level.featured {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.3));
    transform: scale(1.05);
}

.vip-level:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.level-badge {
    margin-bottom: 20px;
}

.level-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.level-badge h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
}

.level-requirements {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.level-benefits {
    list-style: none;
    text-align: left;
}

.level-benefits li {
    padding: 8px 0;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    padding-left: 20px;
}

.level-benefits li:before {
    content: "✓";
    color: #d4af37;
    position: absolute;
    left: 0;
}

/* Contact Page Styles */
.contact-methods {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.contact-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.contact-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.contact-features .feature {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-contact {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    margin: 20px 0 15px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.contact-status {
    font-size: 0.9rem;
    color: #cccccc;
}

.contact-status.online {
    color: #27ae60;
    font-weight: 600;
}

.contact-status.vip {
    color: #9b59b6;
    font-weight: 600;
}

/* Support Categories */
.support-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.support-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

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

.support-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.support-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 15px;
    text-align: center;
}

.support-topics {
    list-style: none;
    margin: 20px 0;
}

.support-topics li {
    padding: 8px 0;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    padding-left: 20px;
}

.support-topics li:before {
    content: "▸";
    color: #d4af37;
    position: absolute;
    left: 0;
}

/* App Download */
.app-download {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.app-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.app-info {
    flex: 2;
}

.app-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 30px;
}

.app-features {
    display: grid;
    gap: 25px;
}

.app-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
}

.app-features .feature-icon {
    font-size: 2rem;
    margin-top: 5px;
}

.app-features strong {
    color: #d4af37;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.app-downloads {
    flex: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.app-downloads h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-icon {
    font-size: 2rem;
}

.btn-text {
    text-align: left;
}

.btn-text small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.btn-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.app-qr {
    margin-bottom: 30px;
}

.app-qr h5 {
    color: #d4af37;
    margin-bottom: 15px;
}

.qr-placeholder {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px dashed rgba(212, 175, 55, 0.3);
}

.qr-code {
    font-size: 3rem;
    margin-bottom: 10px;
}

.app-specs h5 {
    color: #d4af37;
    margin-bottom: 15px;
}

.specs-list {
    display: grid;
    gap: 8px;
}

.spec-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.spec-item strong {
    color: #d4af37;
}

/* Office Info */
.office-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.office-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.office-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.office-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.office-details {
    text-align: left;
}

.office-details p {
    margin-bottom: 12px;
    color: #e0e0e0;
    line-height: 1.6;
}

.office-details strong {
    color: #d4af37;
    display: inline-block;
    min-width: 120px;
}

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

.promotion-cta, .contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    text-align: center;
}

.promotion-cta h2, .contact-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
}

/* Games Page Styles */
.games-overview {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.games-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    min-width: 150px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #d4af37;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: #e0e0e0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.games-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.category-card {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.category-card.sports .category-bg {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(0, 0, 0, 0.8));
}

.category-card.casino .category-bg {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(0, 0, 0, 0.8));
}

.category-card.lottery .category-bg {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.2), rgba(0, 0, 0, 0.8));
}

.category-card.slots .category-bg {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.2), rgba(0, 0, 0, 0.8));
}

.category-card.fishing .category-bg {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(0, 0, 0, 0.8));
}

.category-card.cockfight .category-bg {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.2), rgba(0, 0, 0, 0.8));
}

.category-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.category-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.category-features span {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-category {
    align-self: flex-start;
    padding: 12px 25px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Game Providers */
.game-providers {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.provider-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

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

.provider-logo {
    font-size: 3rem;
    margin-bottom: 15px;
}

.provider-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.provider-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Game Features */
.game-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.feature-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Top Games */
.top-games {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.top-games-grid {
    display: grid;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.top-game-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
    padding: 25px 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.top-game-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.game-rank {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #d4af37;
    margin-right: 25px;
    min-width: 50px;
}

.game-info {
    flex: 1;
}

.game-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 8px;
}

.game-info p {
    color: #cccccc;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.game-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.game-stats span {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.btn-play {
    padding: 10px 20px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 20px;
}

.btn-play:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Game CTA */
.game-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    text-align: center;
}

.game-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
}

.game-cta p {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        justify-content: center;
        gap: 30px;
    }

    .bonus-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-logo h3 {
        font-size: 2.2rem;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 40px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-icon {
        margin-bottom: 10px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .payment-icons {
        justify-content: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .guide-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-primary, .btn-secondary {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .game-category,
    .advantage-item {
        padding: 30px 20px;
    }
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-top: 2px solid #d4af37;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    flex: 1;
    color: #ffffff;
}

.cookie-text p:first-child {
    margin-bottom: 8px;
    color: #d4af37;
    font-size: 1.1rem;
}

.cookie-text p:last-child {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-policy {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    border: 1px solid #d4af37;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-policy:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #ffd700;
    border-color: #ffd700;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .btn-accept,
    .btn-policy {
        width: 100%;
        text-align: center;
    }
}

/* Policy Page Styles */
.policy-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.8)), 
                url('../images/casino_bg.png') center/cover;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.policy-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.policy-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.policy-content {
    padding: 80px 0;
    background: #0a0a0a;
}

.policy-section {
    margin-bottom: 60px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
}

.policy-subsection {
    margin-bottom: 35px;
}

.policy-subsection h3 {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-subsection p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.policy-list {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.policy-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.policy-contact {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

.policy-contact h2 {
    color: #d4af37;
    margin-bottom: 20px;
}

.policy-contact p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Deposit/Withdraw Pages Styles */
.deposit-hero, .withdraw-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.8));
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.deposit-header h1, .withdraw-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 20px;
}

.deposit-subtitle, .withdraw-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.deposit-highlights, .withdraw-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.highlight-icon {
    font-size: 1.2rem;
}

.methods-grid, .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.method-card, .info-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.method-card:hover, .info-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.method-icon, .info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.method-card h3, .info-card h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.method-details p, .info-details p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.supported-banks, .bank-list {
    margin-top: 20px;
}

.bank-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.bank-item {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.method-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.method-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}