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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    border-radius: 8px;
    margin-right: 12px;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff !important;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ff8c5a, #ffa940);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #ffffff !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    padding: 2rem 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:last-child {
    border-bottom: none;
    margin-top: 1rem;
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-left-color: #ffd700;
}

.mobile-cta-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff !important;
    font-weight: 700;
    margin: 0 2rem;
    border-radius: 8px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: none !important;
}

.mobile-cta-button:hover {
    background: linear-gradient(45deg, #ff8c5a, #ffa940);
    color: #ffffff !important;
}

/* Main Content Spacing */
main {
    margin-top: 80px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo-text {
        font-size: 1.25rem;
    }

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

    main {
        margin-top: 70px;
    }
}

@media screen and (max-width: 480px) {
    .mobile-nav-link {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .mobile-cta-button {
        margin: 0 1.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo img {
        width: 36px;
        height: 36px;
        margin-right: 8px;
    }
}

/* Header scroll effect */
.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.mobile-nav-link:focus,
.mobile-menu-toggle:focus,
.logo a:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .header {
        background: #000000;
        border-bottom: 2px solid #ffffff;
    }

    .nav-link:hover,
    .mobile-nav-link:hover {
        background: #ffffff;
        color: #000000;
    }
}

/* Homepage Styles */

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-image {
    margin: 3rem 0;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-secondary {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #d0d0d0;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-primary,
.cta-secondary,
.cta-final {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    margin: 0.5rem;
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-final:hover {
    background: linear-gradient(45deg, #ff8c5a, #ffa940);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Slot Demo Section */
.slot-demo {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.slot-machine {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.slot-display {
    background: #0a0a0a;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 3px solid #ffd700;
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.2);
}

.reels {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.reel {
    width: 80px;
    height: 200px;
    background: linear-gradient(180deg, #1a1a2e, #0a0a0a);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border: 2px solid rgba(255, 215, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.symbol {
    font-size: 2rem;
    text-align: center;
    padding: 0.5rem;
    transition: transform 0.5s ease;
}

.reel.spinning .symbol {
    animation: spin 0.1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.slot-controls {
    text-align: center;
}

.bet-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffd700;
}

.spin-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.spin-btn:hover {
    background: linear-gradient(45deg, #ff8c5a, #ffa940);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.spin-btn:active {
    transform: translateY(0);
}

/* Login System Section */
.login-system {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.login-text h3 {
    color: #ffd700;
    margin: 2rem 0 1rem 0;
}

.login-steps {
    list-style: none;
    padding: 0;
}

.login-steps li {
    background: rgba(255, 215, 0, 0.1);
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.login-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.security-features {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.security-features h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Wallet System Section */
.wallet-system {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.wallet-content h3 {
    color: #ffd700;
    margin: 2rem 0 1rem 0;
}

.deposit-methods,
.withdrawal-features {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.deposit-methods li,
.withdrawal-features li {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
}

.wallet-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.security-section {
    background: rgba(255, 107, 53, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.security-item h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Slot Games Section */
.slot-games {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.games-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.games-categories h3,
.providers-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.game-types,
.providers-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.game-type,
.provider {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.game-type h4,
.provider h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.games-visual {
    text-align: center;
    margin: 3rem 0;
}

.games-visual img {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-features {
    background: rgba(255, 107, 53, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.game-features h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

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

.feature {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature ul {
    list-style: none;
    padding: 0;
}

.feature li {
    margin: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.feature li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* Promotions Section */
.promotions {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promotions-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.new-member-promos h3,
.daily-weekly-promos h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.promo-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.promo-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.promo-item h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.weekly-schedule {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.day-promo {
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.day-promo h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.promotions-visual {
    text-align: center;
    margin: 3rem 0;
}

.promotions-visual img {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vip-promotions {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.vip-promotions h3 {
    color: #ffd700;
    margin: 2rem 0 1rem 0;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.vip-tier {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.vip-tier h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.vip-tier ul {
    list-style: none;
    padding: 0;
}

.vip-tier li {
    margin: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.vip-tier li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ffd700;
}

.code-steps {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    margin: 2rem 0;
}

.code-steps li {
    margin: 1rem 0;
}

/* VIP Section */
.vip-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vip-criteria {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 3rem;
}

.vip-criteria h3,
.vip-criteria h4 {
    color: #ffd700;
    margin: 1.5rem 0 1rem 0;
}

.points-list {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    list-style: none;
}

.points-list li {
    margin: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.points-list li::before {
    content: "💎";
    position: absolute;
    left: 0;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.level {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    text-align: center;
}

.level h5 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.vip-privileges {
    margin: 3rem 0;
}

.vip-privileges h3 {
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.privilege {
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.privilege h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.privilege ul {
    list-style: none;
    padding: 0;
}

.privilege li {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.privilege li::before {
    content: "⭐";
    position: absolute;
    left: 0;
}

.vip-visual {
    text-align: center;
    margin: 3rem 0;
}

.vip-visual img {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.customer-service {
    background: rgba(255, 107, 53, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.customer-service h3,
.customer-service h4 {
    color: #ffd700;
    margin: 1.5rem 0 1rem 0;
}

.contact-list {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    list-style: none;
}

.contact-list li {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.contact-list li::before {
    content: "📞";
    position: absolute;
    left: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.service h5 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.loyalty-program {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.loyalty-program h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.loyalty-features {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    list-style: none;
}

.loyalty-features li {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.loyalty-features li::before {
    content: "🏆";
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    line-height: 1.7;
    color: #e0e0e0;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-info h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contact-details li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.contact-details li::before {
    content: "📱";
    position: absolute;
    left: 0;
}

.contact-info p {
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .login-content,
    .wallet-grid,
    .games-grid,
    .promotions-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .privileges-grid,
    .security-grid,
    .vip-tiers,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .levels-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .reels {
        gap: 0.5rem;
    }

    .reel {
        width: 60px;
        height: 150px;
    }

    .symbol {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }

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

    .hero-description,
    .hero-secondary {
        font-size: 1rem;
    }

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

    .slot-machine {
        padding: 1rem;
    }

    .reels {
        gap: 0.3rem;
    }

    .reel {
        width: 50px;
        height: 120px;
    }

    .symbol {
        font-size: 1.2rem;
        padding: 0.3rem;
    }

    .bet-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .spin-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .weekly-schedule {
        grid-template-columns: 1fr;
    }
}

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

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

    .hero-description,
    .hero-secondary {
        font-size: 0.9rem;
    }

    .slot-machine {
        padding: 0.8rem;
    }

    .reels {
        gap: 0.2rem;
    }

    .reel {
        width: 40px;
        height: 100px;
    }

    .symbol {
        font-size: 1rem;
        padding: 0.2rem;
    }

    .spin-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-primary,
    .cta-secondary,
    .cta-final {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .slot-demo,
    .login-system,
    .wallet-system,
    .slot-games,
    .promotions,
    .vip-section,
    .faq,
    .contact {
        padding: 2rem 0;
    }
}

/* Footer Styles */
.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-bottom: 80px; /* Space for sticky buttons */
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-1px);
}

.footer-link:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.sticky-btn {
    flex: 1;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sticky-btn-login {
    background: linear-gradient(45deg, #4a90e2, #357abd);
}

.sticky-btn-login:hover {
    background: linear-gradient(45deg, #5ba0f2, #4589cd);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.sticky-btn-register {
    background: linear-gradient(45deg, #50c878, #45b669);
}

.sticky-btn-register:hover {
    background: linear-gradient(45deg, #60d888, #55c679);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 200, 120, 0.4);
}

.sticky-btn-credit {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.sticky-btn-credit:hover {
    background: linear-gradient(45deg, #ff8c5a, #ffa940);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.sticky-btn:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Responsive Design for Footer and Sticky Buttons */
@media screen and (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
        margin-bottom: 70px;
    }

    .footer-legal {
        gap: 1rem;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .sticky-buttons {
        padding: 0.8rem 0;
    }

    .sticky-container {
        padding: 0 15px;
        gap: 0.8rem;
    }

    .sticky-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        min-height: 45px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 1rem 0;
        margin-bottom: 65px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .sticky-buttons {
        padding: 0.6rem 0;
    }

    .sticky-container {
        padding: 0 10px;
        gap: 0.5rem;
    }

    .sticky-btn {
        font-size: 0.8rem;
        padding: 0.7rem 0.8rem;
        min-height: 40px;
        max-width: none;
    }
}

/* High contrast mode support for Footer and Sticky Buttons */
@media (prefers-contrast: high) {
    .footer {
        background: #000000;
        border-top: 2px solid #ffffff;
    }

    .footer-link:hover {
        background: #ffffff;
        color: #000000;
    }

    .sticky-buttons {
        background: #000000;
        border-top: 2px solid #ffffff;
    }

    .sticky-btn {
        border: 1px solid #ffffff;
    }
}

/* Login Page Styles */
.login-page {
    padding: 8rem 0 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.login-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.form-input {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.login-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.5px;
}

.login-btn:hover {
    background: linear-gradient(45deg, #ff8c5a, #ffa940);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

.register-btn {
    display: inline-block;
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.register-btn:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Mobile Responsive for Login Page */
@media (max-width: 768px) {
    .login-page {
        padding: 6rem 0 2rem 0;
    }

    .login-container {
        margin: 0 20px;
        padding: 2rem;
        max-width: none;
    }

    .login-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-input {
        padding: 0.8rem;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .login-btn,
    .register-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        margin: 0 10px;
        padding: 1.5rem;
    }

    .login-title {
        font-size: 1.3rem;
    }

    .form-input {
        padding: 0.7rem;
    }

    .login-btn,
    .register-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Register Page Styles */
.register-page {
    padding: 8rem 0 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.register-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.register-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.register-btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.5px;
}

.register-btn-primary:hover {
    background: linear-gradient(45deg, #ff8c5a, #ffa940);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.register-btn-primary:active {
    transform: translateY(0);
}

.login-btn-outline {
    display: inline-block;
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.login-btn-outline:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Mobile Responsive for Register Page */
@media (max-width: 768px) {
    .register-page {
        padding: 6rem 0 2rem 0;
    }

    .register-container {
        margin: 0 20px;
        padding: 2rem;
        max-width: none;
    }

    .register-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .register-btn-primary,
    .login-btn-outline {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .register-container {
        margin: 0 10px;
        padding: 1.5rem;
    }

    .register-title {
        font-size: 1.3rem;
    }

    .register-btn-primary,
    .login-btn-outline {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Promotion Page Styles */

/* Promotion Hero Section */
.promotion-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promotion-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.promotion-hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.promotion-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

.promotion-hero-cta {
    margin-top: 2rem;
}

.promotion-main-btn {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
    text-transform: none;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Free Credits Section */
.free-credits-section {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-description {
    font-size: 1.1rem;
    color: #d0d0d0;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

.credits-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.credits-subtitle {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.credit-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.credit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.new-member-card {
    border-left: 4px solid #ff6b35;
}

.daily-card {
    border-left: 4px solid #50c878;
}

.card-header h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.credit-details {
    list-style: none;
    padding: 0;
}

.credit-details li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
}

.credit-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.credits-cta {
    text-align: center;
    margin: 3rem 0;
}

.how-to-use {
    background: rgba(255, 107, 53, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-top: 3rem;
}

.how-to-use h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 215, 0, 0.15);
}

.step-number {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
}

/* VIP Program Section */
.vip-program-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-privileges h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.vip-level-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.vip-level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.silver::before {
    background: linear-gradient(45deg, #c0c0c0, #e6e6e6);
}

.gold::before {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.platinum::before {
    background: linear-gradient(45deg, #e5e4e2, #ffffff);
}

.vip-badge {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.vip-requirement {
    color: #ff6b35;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.vip-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.vip-benefits li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.vip-benefits li::before {
    content: "👑";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.vip-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Wallet System Section */
.wallet-system-section {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-content h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.wallet-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.wallet-promo-card {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.wallet-promo-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 107, 53, 0.15);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.wallet-promo-card h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.promo-details {
    list-style: none;
    padding: 0;
}

.promo-details li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
}

.promo-details li::before {
    content: "💎";
    position: absolute;
    left: 0;
}

.auto-wallet-features {
    margin: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 215, 0, 0.15);
}

.feature-item h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.wallet-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Slot Promotions Section */
.slot-promotions-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slot-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.slot-promo-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.slot-promo-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.slot-promo-card h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.popular-games {
    margin: 3rem 0;
}

.popular-games h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

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

.game-category {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.game-category h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.game-list {
    list-style: none;
    padding: 0;
}

.game-list li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
}

.game-list li::before {
    content: "🎰";
    position: absolute;
    left: 0;
}

.slot-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Monthly Promotions Section */
.monthly-promotions-section {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-bonus-campaign {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.mega-bonus-campaign h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.campaign-details h4 {
    color: #ff6b35;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
}

.campaign-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.campaign-features li {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
    color: #e0e0e0;
}

.tournament-section {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.tournament-section h3 {
    color: #ffd700;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.tournament-prizes h4 {
    color: #ff6b35;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.prize-item {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.prize-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 215, 0, 0.15);
}

.rank {
    display: block;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.amount {
    display: block;
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: bold;
}

.daily-promotions {
    margin: 3rem 0;
}

.daily-promotions h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.daily-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.daily-promo {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.daily-promo:hover {
    transform: translateY(-3px);
    background: rgba(255, 215, 0, 0.15);
}

.daily-promo h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.daily-promo p {
    color: #e0e0e0;
    margin: 0;
}

.monthly-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Registration Section */
.registration-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.registration-steps h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.step-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.step-card .step-number {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
}

.step-card h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.security-info {
    margin: 3rem 0;
}

.security-info h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 107, 53, 0.15);
}

.security-item h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Terms and Conditions Section */
.terms-conditions-section {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.terms-category h3 {
    color: #ffd700;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.terms-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.terms-group {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.terms-group h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.terms-list li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.terms-list li::before {
    content: "📋";
    position: absolute;
    left: 0;
}

.terms-warnings {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.terms-warnings h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.warning-list {
    list-style: none;
    padding: 0;
}

.warning-list li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.warning-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.terms-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Customer Service Section */
.customer-service-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-channels h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

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

.contact-item {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.contact-item h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.contact-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.service-hours {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}

.service-hours h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.hours-info p {
    margin: 0.8rem 0;
    color: #e0e0e0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.faq-item p {
    color: #e0e0e0;
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Summary Section */
.summary-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-content {
    max-width: 1200px;
    margin: 0 auto;
}

.summary-header {
    text-align: center;
    margin-bottom: 3rem;
}

.summary-description {
    font-size: 1.2rem;
    color: #d0d0d0;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    line-height: 1.8;
}

.summary-highlights h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.highlight-item {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.highlight-item h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-item p {
    color: #e0e0e0;
    margin: 0;
}

.final-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.final-cta h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.final-cta p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.final-cta-buttons {
    margin: 2rem 0;
}

.final-btn {
    font-size: 1.4rem;
    padding: 1.5rem 3rem;
    text-transform: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

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

.urgent-note {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
}

.article-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.article-info p {
    color: #999;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Mobile Responsive for Promotion Page */
@media screen and (max-width: 968px) {
    .promotion-hero-title {
        font-size: 2.5rem;
    }

    .credits-grid,
    .vip-levels-grid,
    .wallet-promo-grid,
    .slot-promo-grid,
    .games-categories,
    .terms-groups,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid,
    .features-grid,
    .prize-grid,
    .daily-schedule,
    .security-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .promotion-hero {
        padding: 2rem 0;
    }

    .promotion-hero-title {
        font-size: 2rem;
    }

    .promotion-hero-description {
        font-size: 1rem;
    }

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

    .final-btn {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
    }

    .final-cta h3 {
        font-size: 1.6rem;
    }

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

    .highlights-grid,
    .features-grid,
    .prize-grid,
    .daily-schedule,
    .security-features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .promotion-hero-title {
        font-size: 1.6rem;
    }

    .promotion-hero-description {
        font-size: 0.9rem;
    }

    .credits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .credit-card,
    .vip-level-card,
    .wallet-promo-card,
    .slot-promo-card,
    .contact-item {
        padding: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .final-cta {
        padding: 2rem 1rem;
    }

    .final-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .urgent-note {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

/* Policy Pages Styles */
.policy-content {
    padding: 8rem 0 4rem 0;
    min-height: 100vh;
}

.policy-article {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.policy-header {
    text-align: center;
    padding: 2rem 0 3rem 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.policy-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.policy-article h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    font-weight: 700;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.policy-section h4 {
    font-size: 1.2rem;
    color: #ffd700;
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

.policy-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section ul,
.policy-section ol {
    margin: 1rem 0 1rem 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.policy-section strong {
    color: #ffd700;
    font-weight: 600;
}

.contact-info {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-info h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.contact-info ul {
    list-style: none;
    margin: 0;
}

.contact-info li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.policy-section hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Responsible Gambling Policy Specific Styles */
.policy-subsection {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.policy-subsection:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.policy-subsubsection {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #ffd700;
}

.policy-subsubsection h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.policy-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1rem;
}

.policy-section ol li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.contact-info {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.contact-info strong {
    color: #ffd700;
    font-weight: 700;
}

.policy-footer {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

.policy-confirmation h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.policy-confirmation p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.policy-effective-date {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.policy-effective-date p {
    color: #ff6b35;
    font-style: italic;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.policy-help-notice {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.policy-help-notice p {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

/* Warning and Alert Sections */
.policy-section .contact-info.warning {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-left: 4px solid #ff6b35;
}

.policy-section .contact-info.emergency {
    background: rgba(255, 69, 58, 0.15);
    border: 2px solid rgba(255, 69, 58, 0.4);
    border-left: 6px solid #ff453a;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { border-color: rgba(255, 69, 58, 0.4); }
    50% { border-color: rgba(255, 69, 58, 0.7); }
    100% { border-color: rgba(255, 69, 58, 0.4); }
}

/* Tool and Feature Highlights */
.policy-subsection h3 {
    color: #ffffff;
    position: relative;
    padding-left: 2rem;
}

.policy-subsection h3::before {
    content: "🛡️";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.policy-subsection:nth-child(2) h3::before { content: "💰"; }
.policy-subsection:nth-child(3) h3::before { content: "⏰"; }
.policy-subsection:nth-child(4) h3::before { content: "🔄"; }
.policy-subsection:nth-child(5) h3::before { content: "🚫"; }

/* Organization Contact Sections */
.policy-subsubsection .contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
}

/* Footer specific adjustments for responsible gambling */
.policy-article .footer {
    margin-top: 3rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    padding-top: 2rem;
}

/* Mobile Responsive for Policy Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 6rem 0 2rem 0;
    }

    .policy-article {
        margin: 0 20px;
        padding: 2rem;
        border-radius: 15px;
    }

    .policy-header {
        padding: 1.5rem 0 2rem 0;
        margin-bottom: 1.5rem;
    }

    .policy-header::after {
        width: 80px;
    }

    .policy-article h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policy-section h3 {
        font-size: 1.3rem;
        margin: 1rem 0 0.8rem 0;
    }

    .policy-section h4 {
        font-size: 1.1rem;
    }

    .policy-section p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .policy-section ul,
    .policy-section ol {
        margin-left: 1.5rem;
    }

    .contact-info {
        padding: 1rem;
        margin: 1rem 0;
    }

    .policy-subsection {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .policy-subsubsection {
        padding: 1rem;
        margin: 1rem 0;
    }

    .policy-subsection h3 {
        padding-left: 1.8rem;
        font-size: 1.2rem;
    }

    .policy-subsection h3::before {
        font-size: 1.3rem;
    }

    .policy-footer {
        padding: 2rem;
        margin-top: 2rem;
    }

    .policy-confirmation h3 {
        font-size: 1.4rem;
    }

    .policy-confirmation p {
        font-size: 1rem;
    }

    .policy-help-notice {
        padding: 1.5rem;
    }

    .policy-help-notice p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-article {
        margin: 0 10px;
        padding: 1.5rem;
        border-radius: 10px;
    }

    .policy-header {
        padding: 1rem 0 1.5rem 0;
        margin-bottom: 1rem;
    }

    .policy-header::after {
        width: 60px;
    }

    .policy-article h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .policy-section {
        margin-bottom: 2rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .policy-section h4 {
        font-size: 1rem;
    }

    .policy-section p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .policy-section ul,
    .policy-section ol {
        margin-left: 1rem;
    }

    .contact-info {
        padding: 0.8rem;
    }

    .policy-subsection {
        padding: 1rem;
        margin: 1rem 0;
    }

    .policy-subsubsection {
        padding: 0.8rem;
        margin: 0.8rem 0;
    }

    .policy-subsection h3 {
        padding-left: 1.5rem;
        font-size: 1.1rem;
    }

    .policy-subsection h3::before {
        font-size: 1.1rem;
    }

    .policy-footer {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .policy-confirmation h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .policy-confirmation p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .policy-effective-date {
        padding: 1rem;
    }

    .policy-effective-date p {
        font-size: 0.85rem;
    }

    .policy-help-notice {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .policy-help-notice p {
        font-size: 0.9rem;
    }
}