/* Register Page Specific Styles */
.register-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 50%, #16213e 100%);
}

.register-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.register-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    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.3;
}

.register-form-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.btn-register-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-register-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.btn-login-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Mobile Responsive for Register Page */
@media (max-width: 768px) {
    .register-page-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .register-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }

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

@media (max-width: 480px) {
    .register-page-section {
        padding: 100px 15px 40px;
    }

    .register-page-title {
        font-size: 1.75rem;
    }

    .register-form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
}

/* Login Page Specific Styles */
.login-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 50%, #16213e 100%);
}

.login-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.login-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    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.3;
}

.login-form-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.login-form {
    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.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    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 0 3px rgba(255, 215, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

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

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

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.btn-register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-page-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .login-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .form-input {
        padding: 0.875rem;
    }

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

@media (max-width: 480px) {
    .login-page-section {
        padding: 100px 15px 40px;
    }

    .login-page-title {
        font-size: 1.75rem;
    }

    .login-form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
}

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

body {
    font-family: 'Sarabun', sans-serif;
    background-color: #0a0a0b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 50%, rgba(15, 52, 96, 0.95) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

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

.logo a:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 237, 78, 0.2));
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #0a0a0b;
    font-weight: 600;
}

/* CTA Button */
.cta-section {
    display: flex;
    align-items: center;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff8e53, #ff6b35);
}

.cta-button i {
    font-size: 18px;
    animation: pulse 2s infinite;
}

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

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

.hamburger-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    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 */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-mobile.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-mobile-menu {
    list-style: none;
    padding: 20px;
    margin: 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}

.nav-mobile-menu li {
    margin-bottom: 4px;
}

.nav-mobile-link,
.nav-mobile-cta {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    gap: 8px;
}

.nav-mobile-link:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 237, 78, 0.2));
    color: #ffd700;
    transform: translateX(8px);
}

.nav-mobile-link.active {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #0a0a0b;
    font-weight: 600;
}

.nav-mobile-cta {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    margin-top: 10px;
}

.nav-mobile-cta:hover {
    background: linear-gradient(135deg, #ff8e53, #ff6b35);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.nav-mobile-cta i {
    font-size: 18px;
    animation: pulse 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: 65px;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .logo-text {
        font-size: 20px;
    }

    .nav-desktop,
    .cta-section {
        display: none;
    }

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

    main {
        margin-top: 65px;
    }

    .nav-mobile-menu {
        padding: 15px;
    }

    .nav-mobile-link,
    .nav-mobile-cta {
        padding: 12px 16px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
        height: 60px;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 18px;
    }

    main {
        margin-top: 60px;
    }

    .nav-mobile-menu {
        padding: 12px;
    }

    .nav-mobile-link,
    .nav-mobile-cta {
        padding: 10px 14px;
        font-size: 14px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

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

/* Homepage Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(22, 33, 62, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

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

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

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff8e53, #ff6b35);
}

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

.btn-secondary:hover {
    background: #ffd700;
    color: #0a0a0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

/* Info Section */
.info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
}

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

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-icon i {
    font-size: 2rem;
    color: #0a0a0b;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.info-card p {
    line-height: 1.7;
    color: #e0e0e0;
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 100%);
}

.demo-game {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.demo-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffd700;
}

.slot-machine {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.slot-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 2rem;
    background: #000;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #ffd700;
}

.slot-reel {
    height: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.slot-symbol {
    font-size: 2.5rem;
    padding: 10px;
    transition: all 0.3s ease;
}

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

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

.slot-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.spin-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slot-info {
    display: flex;
    gap: 2rem;
    font-size: 1.1rem;
    color: #ffd700;
}

.slot-result {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    min-height: 30px;
}

.slot-result.win {
    color: #4CAF50;
    animation: bounce 0.5s ease;
}

.slot-result.lose {
    color: #f44336;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

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

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.game-icon i {
    font-size: 2rem;
    color: white;
}

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

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

.baccarat-image, .mobile-image, .promotions-image, .security-image, .fishing-image {
    text-align: center;
    margin-top: 3rem;
}

.game-showcase, .mobile-showcase, .promotions-showcase, .security-showcase, .fishing-showcase {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.game-showcase:hover, .mobile-showcase:hover, .promotions-showcase:hover,
.security-showcase:hover, .fishing-showcase:hover {
    transform: scale(1.02);
}

/* Usage Section */
.usage-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 100%);
}

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

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

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
}

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

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

.step-card p {
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.5;
}

.login-info h3, .usage-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.login-info h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem;
    color: #ffed4e;
}

.login-info p, .usage-text p {
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

/* App Section */
.app-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

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

.app-features h3, .app-advantages h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

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

.features-list {
    display: grid;
    gap: 2rem;
}

.feature-group h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffed4e;
}

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

.feature-group li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-group li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

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

.advantage-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: white;
}

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

.advantage-card p {
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Slots Section */
.slots-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 100%);
}

.slots-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.slots-providers h3, .slots-strategy h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffd700;
}

.provider-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
}

.provider-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffed4e;
}

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

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

.strategy-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
}

.strategy-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a0a0b;
}

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

.strategy-item p {
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.5;
}

.recommended-games h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffed4e;
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.game-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.game-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.game-name {
    font-weight: 600;
    color: #ffd700;
}

.game-desc {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Login Section */
.login-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

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

.login-steps h3, .security-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.login-steps p, .security-info p {
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.troubleshooting h4, .account-protection h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffed4e;
}

.problems-grid {
    display: grid;
    gap: 1rem;
}

.problem-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.problem-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.problem {
    font-weight: 600;
    color: #ff6b35;
}

.solution {
    color: #4CAF50;
    font-size: 0.9rem;
}

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

.account-protection li {
    padding: 0.8rem 0;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.account-protection li:last-child {
    border-bottom: none;
}

.account-protection strong {
    color: #ffd700;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 100%);
}

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

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

.contact-channels h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffed4e;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.2rem;
    color: #ffd700;
    width: 20px;
}

.contact-item span {
    color: #e0e0e0;
}

.contact-info p {
    line-height: 1.7;
    color: #e0e0e0;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

/* Important Info Section */
.important-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 100%);
}

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

.important-info p {
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.important-info a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.important-info a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

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

.cta-final p {
    margin: 0;
    font-size: 1.1rem;
}

.cta-final a {
    color: #ff6b35;
    font-weight: 600;
}

.cta-final a:hover {
    color: #ff8e53;
}

.disclaimer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 2rem;
}

.disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.disclaimer strong {
    color: #ffd700;
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .usage-content, .app-grid, .slots-content, .login-content, .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid, .games-grid, .advantages-grid, .strategy-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .slot-display {
        padding: 15px;
        gap: 5px;
    }

    .slot-symbol {
        font-size: 2rem;
    }

    .slot-info {
        gap: 1rem;
        font-size: 1rem;
    }

    .game-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

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

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

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

    .info-section, .games-section, .usage-section, .app-section,
    .slots-section, .login-section, .faq-section, .important-info {
        padding: 60px 0;
    }

    .demo-section, .contact-section {
        padding: 40px 0;
    }

    .info-card, .game-card, .faq-item, .provider-card {
        padding: 1.5rem;
    }

    .slot-machine {
        padding: 1rem;
    }

    .slot-display {
        padding: 10px;
    }

    .slot-symbol {
        font-size: 1.5rem;
        padding: 5px;
    }

    .spin-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

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

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-content {
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-link:hover::after {
    width: 80%;
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.sticky-btn {
    flex: 1;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    margin: 0 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.sticky-btn i {
    font-size: 18px;
    margin-bottom: 2px;
}

.sticky-btn span {
    font-size: 12px;
    line-height: 1;
}

/* Login Button */
.sticky-btn-login {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    border-color: rgba(76, 175, 80, 0.5);
}

/* Register Button */
.sticky-btn-register {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #1976D2, #2196F3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    border-color: rgba(33, 150, 243, 0.5);
}

/* Bonus Button */
.sticky-btn-bonus {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
}

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #ff8e53, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.5);
}

.sticky-btn-bonus i {
    animation: pulse 2s infinite;
}

/* Add space for sticky buttons to main content */
body {
    padding-bottom: 80px;
}

/* Responsive Design for Footer and Sticky Buttons */
@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
    }

    .footer-nav {
        gap: 20px;
    }

    .footer-link {
        font-size: 13px;
        padding: 6px 12px;
    }

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

    .sticky-btn {
        padding: 10px 6px;
        font-size: 12px;
        margin: 0 2px;
        border-radius: 10px;
    }

    .sticky-btn i {
        font-size: 16px;
    }

    .sticky-btn span {
        font-size: 11px;
    }

    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 15px 0;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }

    .footer-link {
        font-size: 12px;
        padding: 4px 8px;
    }

    .sticky-container {
        padding: 8px 10px;
    }

    .sticky-btn {
        padding: 8px 4px;
        font-size: 11px;
        margin: 0 1px;
        border-radius: 8px;
    }

    .sticky-btn i {
        font-size: 14px;
    }

    .sticky-btn span {
        font-size: 10px;
    }

    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 360px) {
    .footer-link {
        font-size: 11px;
    }

    .sticky-btn {
        padding: 6px 2px;
    }

    .sticky-btn i {
        font-size: 12px;
    }

    .sticky-btn span {
        font-size: 9px;
    }
}

/* ===============================
   PROMOTION PAGE SPECIFIC STYLES
   =============================== */

/* Promotion Sections Base Styles */
.promotion-section,
.monthly-promotions,
.slots-promotions,
.vip-promotions,
.banking-promotions,
.special-offers,
.why-choose,
.summary-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.promotion-section {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
}

.monthly-promotions {
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 50%, #16213e 100%);
}

.slots-promotions {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.vip-promotions {
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 100%);
}

.banking-promotions {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
}

.special-offers {
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.special-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.special-offers .container {
    position: relative;
    z-index: 1;
}

.why-choose {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.summary-section {
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 50%, #16213e 100%);
}

/* Promotion Grid Layouts */
.promotion-grid,
.monthly-grid,
.slots-grid,
.vip-grid,
.banking-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Promotion Cards */
.promotion-card,
.monthly-card,
.slots-card,
.banking-card,
.why-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.promotion-card::before,
.monthly-card::before,
.slots-card::before,
.banking-card::before,
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02), rgba(255, 107, 53, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.promotion-card:hover,
.monthly-card:hover,
.slots-card:hover,
.banking-card:hover,
.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.promotion-card:hover::before,
.monthly-card:hover::before,
.slots-card:hover::before,
.banking-card:hover::before,
.why-card:hover::before {
    opacity: 1;
}

.promotion-card > *,
.monthly-card > *,
.slots-card > *,
.banking-card > *,
.why-card > * {
    position: relative;
    z-index: 1;
}

.promotion-card h3,
.monthly-card h3,
.slots-card h3,
.banking-card h3,
.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.3;
}

.promotion-card p,
.monthly-card p,
.slots-card p,
.banking-card p,
.why-card p {
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

/* Promotion Lists */
.promotion-list,
.monthly-offers,
.baccarat-offers,
.slots-features,
.provider-bonuses,
.banking-features,
.payment-methods,
.trust-features,
.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.promotion-item,
.offer-item,
.baccarat-item,
.slot-feature,
.provider-bonus,
.banking-feature,
.trust-feature,
.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.promotion-item:hover,
.offer-item:hover,
.baccarat-item:hover,
.slot-feature:hover,
.provider-bonus:hover,
.banking-feature:hover,
.trust-feature:hover,
.tech-feature:hover {
    border-color: rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 107, 53, 0.02));
    transform: translateX(5px);
}

.promotion-item i,
.offer-item i,
.baccarat-item i,
.slot-feature i,
.provider-bonus i,
.banking-feature i,
.trust-feature i,
.tech-feature i {
    font-size: 1.2rem;
    color: #ffd700;
    margin-top: 2px;
    min-width: 20px;
}

.promotion-item span,
.offer-item span,
.baccarat-item span,
.slot-feature span,
.provider-bonus span,
.banking-feature span,
.trust-feature span,
.tech-feature span {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Conditions List */
.conditions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

.condition-item:hover {
    border-color: rgba(76, 175, 80, 0.4);
    transform: translateX(5px);
}

.condition-item i {
    font-size: 1.2rem;
    color: #4CAF50;
    min-width: 20px;
}

.condition-item span {
    color: #e0e0e0;
    line-height: 1.6;
}

/* VIP Specific Styles */
.vip-content h3,
.vip-benefits h4,
.vip-tiers h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.vip-tier {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.vip-tier:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.tier-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    min-width: 120px;
}

.tier-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #b8860b);
    color: #ffffff;
}

.tier-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: #000000;
}

.tier-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
}

.tier-badge.platinum {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #000000;
}

.tier-badge i {
    font-size: 1rem;
}

.vip-tier p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.5;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 107, 53, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 1.2rem;
    color: #ffd700;
    margin-top: 2px;
    min-width: 20px;
}

.benefit-item span {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Payment Methods */
.payment-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.payment-category:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

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

.payment-category p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.5;
}

/* Special Offers Styles */
.special-content h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.special-content p {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.urgent-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.urgent-offer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 142, 83, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.urgent-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
    z-index: 0;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.urgent-offer > * {
    position: relative;
    z-index: 1;
}

.urgent-offer:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.urgent-offer i {
    font-size: 1.5rem;
    color: #ff6b35;
    animation: pulse 2s infinite;
}

.urgent-offer span {
    color: #e0e0e0;
    line-height: 1.6;
    font-weight: 500;
}

.urgent-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.urgent-btn {
    animation: glow 2s infinite alternate;
    position: relative;
    overflow: hidden;
}

.urgent-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: sweep 2s infinite;
}

@keyframes glow {
    from { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4); }
    to { box-shadow: 0 12px 35px rgba(255, 107, 53, 0.8); }
}

@keyframes sweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Simple Conditions */
.simple-conditions {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.simple-conditions h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.simple-conditions p {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

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

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 107, 53, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0a0a0b;
    font-size: 1.1rem;
    min-width: 40px;
}

.step span:last-child {
    color: #e0e0e0;
    line-height: 1.5;
}

/* Monthly Content */
.monthly-content h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.monthly-content p {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

/* FAQ Specific for Promotion Page */
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-content .faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-content .faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

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

.faq-content .faq-item p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-content .faq-item ol,
.faq-content .faq-item ul {
    color: #e0e0e0;
    line-height: 1.7;
    padding-left: 1.5rem;
}

.faq-content .faq-item ol li,
.faq-content .faq-item ul li {
    margin-bottom: 0.5rem;
}

.contact-admin {
    text-align: center;
    margin-top: 2rem;
}

/* Summary Section */
.summary-content {
    text-align: center;
}

.summary-content p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.summary-advantages {
    margin: 3rem 0;
}

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

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

.advantage {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.advantage:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.advantage i {
    font-size: 1.5rem;
    color: #ffd700;
    min-width: 24px;
}

.advantage span {
    color: #e0e0e0;
    line-height: 1.6;
    font-weight: 500;
}

.final-message {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 142, 83, 0.05));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin: 3rem 0;
}

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

.final-cta {
    text-align: center;
}

.mega-btn {
    font-size: 1.3rem;
    padding: 20px 40px;
    animation: megaPulse 3s infinite;
}

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

/* Contact Info */
.contact-info {
    margin: 3rem 0;
}

.contact-details h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.2rem;
    color: #ffd700;
    min-width: 20px;
}

.contact-item span {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Buttons */
.promotion-cta,
.monthly-cta,
.slots-cta,
.banking-cta,
.trust-cta,
.vip-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design for Promotion Page */
@media (max-width: 768px) {
    .promotion-section,
    .monthly-promotions,
    .slots-promotions,
    .vip-promotions,
    .banking-promotions,
    .special-offers,
    .why-choose,
    .summary-section {
        padding: 60px 0;
    }

    .promotion-grid,
    .monthly-grid,
    .slots-grid,
    .vip-grid,
    .banking-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .promotion-card,
    .monthly-card,
    .slots-card,
    .banking-card,
    .why-card {
        padding: 2rem;
    }

    .urgent-offers {
        grid-template-columns: 1fr;
    }

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

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

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

    .vip-tier {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .tier-badge {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .promotion-section,
    .monthly-promotions,
    .slots-promotions,
    .vip-promotions,
    .banking-promotions,
    .special-offers,
    .why-choose,
    .summary-section {
        padding: 50px 0;
    }

    .promotion-card,
    .monthly-card,
    .slots-card,
    .banking-card,
    .why-card {
        padding: 1.5rem;
    }

    .promotion-card h3,
    .monthly-card h3,
    .slots-card h3,
    .banking-card h3,
    .why-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .promotion-item,
    .offer-item,
    .baccarat-item,
    .slot-feature,
    .provider-bonus,
    .banking-feature,
    .trust-feature,
    .tech-feature,
    .benefit-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .urgent-offer {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

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

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

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .final-message {
        padding: 2rem;
    }

    .mega-btn {
        font-size: 1.1rem;
        padding: 16px 32px;
    }
}

/* ===============================
   PRIVACY POLICY PAGE STYLES
   =============================== */

/* Privacy Policy Section */
.privacy-policy-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    position: relative;
}

.privacy-policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.privacy-policy-section .container {
    position: relative;
    z-index: 1;
}

/* Policy Content */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Typography */
.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    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.3;
}

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

.policy-content h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.policy-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffed4e;
    margin: 2rem 0 1rem;
}

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

.policy-content p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.policy-content p em {
    color: #cccccc;
    font-style: italic;
}

/* Lists */
.policy-content ul,
.policy-content ol {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content ul li,
.policy-content ol li {
    margin-bottom: 0.8rem;
    position: relative;
}

.policy-content ul li::before {
    content: '▶';
    position: absolute;
    left: -1.5rem;
    color: #ffd700;
    font-size: 0.8rem;
    top: 0.1rem;
}

.policy-content ul li strong {
    color: #ffd700;
    font-weight: 600;
}

/* Contact Info Sections */
.contact-info {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
    z-index: 0;
}

.contact-info > * {
    position: relative;
    z-index: 1;
}

.contact-info h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.3rem;
}

.contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 0;
    list-style: none;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info ul li:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 107, 53, 0.04));
}

.contact-info ul li::before {
    content: '📞';
    position: static;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.contact-info ul li:nth-child(1)::before { content: '📧'; }
.contact-info ul li:nth-child(2)::before { content: '📞'; }
.contact-info ul li:nth-child(3)::before { content: '💬'; }
.contact-info ul li:nth-child(4)::before { content: '📍'; }

/* Horizontal Rule */
.policy-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    margin: 3rem 0;
}

/* Effective Date */
.policy-content p:first-of-type {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.05));
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    font-weight: 600;
}

/* Last Updated */
.policy-content p:last-of-type {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    text-align: center;
    font-weight: 600;
    color: #81C784;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 100px 0 60px;
    }

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

    .policy-content h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem;
    }

    .policy-content h4 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.8rem;
    }

    .policy-content ul,
    .policy-content ol {
        padding-left: 1.5rem;
    }

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

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

    .contact-info ul li::before {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .privacy-policy-section {
        padding: 90px 0 50px;
    }

    .policy-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
        border-radius: 20px;
    }

    .policy-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .policy-content h2 {
        font-size: 1.3rem;
        margin: 1.8rem 0 0.8rem;
    }

    .policy-content h3 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem;
    }

    .policy-content h4 {
        font-size: 1rem;
        margin: 1rem 0 0.6rem;
    }

    .policy-content p {
        line-height: 1.7;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .policy-content ul,
    .policy-content ol {
        padding-left: 1.2rem;
    }

    .policy-content ul li,
    .policy-content ol li {
        margin-bottom: 0.6rem;
    }

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

    .contact-info h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .contact-info ul li {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .policy-content {
        padding: 1.2rem;
        margin: 0 0.3rem;
    }

    .policy-content h1 {
        font-size: 1.6rem;
    }

    .policy-content h2 {
        font-size: 1.2rem;
    }

    .policy-content h3 {
        font-size: 1rem;
    }

    .policy-content h4 {
        font-size: 0.95rem;
    }

    .policy-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .contact-info {
        padding: 1rem;
    }

    .contact-info ul li {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }
}