/* =================================
   HEADER & NAVIGATION STYLES
   ================================= */

/* Main Header */
.main-header {
    position: sticky;
    top: 0;
    background: #1a1a1a;
    border-bottom: 2px solid #2d2d2d;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Navigation Container */
.navbar {
    padding: 0;
}

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

/* Brand Logo Section */
.nav-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    gap: 12px;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    width: 40px;
    height: 40px;
    filter: brightness(1.1);
}

.brand-text {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.nav-link[aria-current="page"] {
    color: #ffd700;
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: none;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 1px solid #2d2d2d;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

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

.mobile-menu-content {
    padding: 20px;
}

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

.mobile-nav-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

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

.mobile-nav-link[aria-current="page"] {
    color: #ffd700;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.1);
}

/* Mobile CTA Button */
.mobile-cta-button {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 25px;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 10px;
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

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

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

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

    .nav-menu {
        display: none;
    }

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

    .mobile-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
}

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

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

    .logo {
        width: 30px;
        height: 30px;
    }

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

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

    .mobile-cta-button {
        font-size: 16px;
        padding: 12px 20px;
    }
}

/* Focus States for Accessibility */
.nav-link:focus,
.cta-button:focus,
.mobile-nav-link:focus,
.mobile-cta-button:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* =================================
   GLOBAL STYLES
   ================================= */

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

body {
    font-family: 'Sarabun', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
}

p {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

/* Links */
a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffed4e;
}

/* Lists */
ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.section-image {
    margin: 2rem 0;
    text-align: center;
}

/* =================================
   HERO SECTION
   ================================= */

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-bottom: 2px solid #ffd700;
}

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

.hero-title {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-primary, .cta-secondary {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.1rem;
}

.cta-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    color: #1a1a1a;
}

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

.cta-secondary:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* =================================
   SECTION LAYOUTS
   ================================= */

section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

/* Grid Layouts */
.features-grid, .content-grid, .games-grid, .promo-layout, .security-grid, .service-layout, .faq-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

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

.features-grid, .games-grid, .promo-layout {
    grid-template-columns: 1fr;
}

.service-layout, .two-column-layout {
    grid-template-columns: 1fr 1fr;
}

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

/* Feature Cards */
.feature-card, .game-category-card, .promo-card {
    background: rgba(45, 45, 45, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover, .game-category-card:hover, .promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.feature-section, .game-group, .bonus-section {
    margin: 1.5rem 0;
}

/* Lists Styling */
.feature-list, .game-list, .provider-list, .strategy-list, .betting-types, .technique-list,
.thai-games, .international-games, .studio-providers, .bonus-list, .weekly-promos,
.vip-tiers, .security-list, .protection-policies, .contact-list, .vip-benefits {
    list-style: none;
    padding: 0;
}

.feature-list li, .game-list li, .thai-games li, .international-games li,
.bonus-list li, .vip-tiers li, .security-list li, .contact-list li, .vip-benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-list li:last-child, .game-list li:last-child, .thai-games li:last-child,
.international-games li:last-child, .bonus-list li:last-child, .vip-tiers li:last-child,
.security-list li:last-child, .contact-list li:last-child, .vip-benefits li:last-child {
    border-bottom: none;
}

.provider-list, .strategy-list, .betting-types, .technique-list, .studio-providers,
.weekly-promos, .protection-policies {
    counter-reset: item;
}

.provider-list li, .strategy-list li, .technique-list li, .studio-providers li,
.weekly-promos li, .protection-policies li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

/* =================================
   SLOT DEMO SECTION
   ================================= */

.game-demo-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #2d2d2d 100%);
    padding: 4rem 0;
}

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

.slot-machine {
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    border: 3px solid #ffd700;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.slot-display {
    background: #1a1a1a;
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

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

.reel {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 2px solid #ffd700;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.reel.spinning .symbol {
    animation: spin 0.5s ease-in-out infinite;
}

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

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

.spin-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

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

.bet-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffd700;
    font-weight: 500;
}

.bet-controls select {
    background: #2d2d2d;
    color: #ffd700;
    border: 1px solid #ffd700;
    padding: 0.5rem;
    border-radius: 5px;
    font-family: 'Sarabun', sans-serif;
}

.game-stats {
    display: flex;
    justify-content: space-around;
    background: rgba(45, 45, 45, 0.8);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

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

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 0.25rem;
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
}

.demo-disclaimer {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    text-align: center;
}

.demo-disclaimer p {
    margin-bottom: 1rem;
    color: #ffd700;
    font-weight: 500;
}

.demo-cta {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.demo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
}

/* =================================
   CTA SECTIONS
   ================================= */

.cta-section, .final-cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.register-cta, .final-cta-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 18px 36px;
    border-radius: 30px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    margin-bottom: 1rem;
}

.register-cta:hover, .final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    color: #1a1a1a;
}

.final-description {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* =================================
   FAQ SECTION
   ================================= */

.faq-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.faq-category {
    background: rgba(45, 45, 45, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-item {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

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

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

/* =================================
   RESPONSIVE DESIGN
   ================================= */

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

    h1 {
        font-size: 2rem;
    }

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

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .hero {
        padding: 2.5rem 0;
    }

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

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .content-grid, .service-layout, .two-column-layout {
        grid-template-columns: 1fr;
    }

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

    .slot-reels {
        gap: 0.5rem;
    }

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

    .symbol {
        font-size: 1.5rem;
    }

    .bet-controls {
        flex-direction: column;
        gap: 0.5rem;
    }

    .game-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

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

    h1 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.3rem;
    }

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

    .feature-card, .game-category-card, .promo-card, .faq-category {
        padding: 1.5rem;
    }

    .slot-machine {
        padding: 1.5rem;
    }

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

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

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

    .cta-primary, .cta-secondary, .register-cta, .final-cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* =================================
   ANIMATION & EFFECTS
   ================================= */

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

/* Fade in animation for sections */
section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

/* Override animation for content pages to ensure immediate visibility */
.privacy-policy-content,
.terms-conditions-content,
.responsible-gambling-content {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

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

/* Stagger section animations */
section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }

/* Hover effects for images */
.section-image img, .hero-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image img:hover, .hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
}

/* Focus states for accessibility */
.cta-primary:focus, .cta-secondary:focus, .register-cta:focus,
.final-cta-button:focus, .demo-cta:focus, .spin-btn:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Loading animation for slot spinning */
.spinning {
    animation-duration: 1s;
}

/* Winning animation */
.win-animation {
    animation: pulse 0.5s ease-in-out 3;
}

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

/* =================================
   FOOTER STYLES
   ================================= */

.main-footer {
    background: #1a1a1a;
    border-top: 2px solid #2d2d2d;
    padding: 2rem 0;
    margin-bottom: 80px; /* Add bottom margin to prevent sticky buttons overlap */
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

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

/* =================================
   STICKY BUTTONS STYLES
   ================================= */

.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 2px solid #ffd700;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    padding: 1rem 0;
}

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

.sticky-btn {
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    flex: 1;
    max-width: 160px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

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

/* Individual button styles */
.sticky-btn-login {
    background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
    color: #ffffff;
    border: 1px solid #ffd700;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #3a3a3a, #4a4a4a);
    color: #ffd700;
}

.sticky-btn-register {
    background: linear-gradient(135deg, #4a4a4a, #5a5a5a);
    color: #ffffff;
    border: 1px solid #ffd700;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #5a5a5a, #6a6a6a);
    color: #ffd700;
}

.sticky-btn-credit {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    border: 1px solid transparent;
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* =================================
   RESPONSIVE DESIGN FOR FOOTER & STICKY BUTTONS
   ================================= */

@media (max-width: 768px) {
    .main-footer {
        padding: 1.5rem 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

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

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

    .sticky-btn {
        font-size: 0.9rem;
        padding: 10px 16px;
        max-width: 140px;
    }
}

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

    .footer-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

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

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

    .sticky-btn {
        font-size: 0.85rem;
        padding: 8px 12px;
        max-width: 120px;
    }
}

/* Ensure sticky buttons don't obscure footer on small screens */
@media (max-width: 767px) {
    .main-footer {
        margin-bottom: 70px;
    }
}

@media (max-width: 479px) {
    .main-footer {
        margin-bottom: 60px;
    }
}

/* =================================
   LOGIN PAGE STYLES
   ================================= */

/* Login Section */
.login-section {
    background: #1a1a1a;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

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

/* Login Title */
.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Login Form */
.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-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.form-input {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    padding: 15px 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

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

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

.form-input.error {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.form-input.error:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

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

.btn-primary {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    text-transform: none;
}

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

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

.btn-outline {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 12px 30px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .login-section {
        min-height: calc(100vh - 60px);
        padding: 1rem 0;
    }

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

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

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

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

    .form-input {
        padding: 12px 16px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .btn-outline {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

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

/* Promotion Sections */
.promotion-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.promotion-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-bottom: 2px solid #ffd700;
}

/* Bonus Features */
.bonus-features {
    margin: 2rem 0;
}

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

.bonus-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.bonus-list li:before {
    content: "★";
    color: #ffd700;
    font-weight: bold;
    margin-top: 0.1rem;
}

.bonus-list li:last-child {
    border-bottom: none;
}

/* Steps Section */
.steps-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(45, 45, 45, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.step-content h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Weekly Promotions */
.weekly-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.main-bonus-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.monday-card {
    border-left: 4px solid #4ade80;
}

.wednesday-card {
    border-left: 4px solid #06b6d4;
}

.friday-card {
    border-left: 4px solid #8b5cf6;
}

.weekend-card {
    border-left: 4px solid #f59e0b;
}

/* VIP Tiers */
.vip-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.bronze-tier {
    border-left: 4px solid #cd7f32;
}

.silver-tier {
    border-left: 4px solid #c0c0c0;
}

.gold-tier {
    border-left: 4px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.platinum-tier {
    border-left: 4px solid #e5e7eb;
    background: linear-gradient(135deg, rgba(229, 231, 235, 0.1), rgba(229, 231, 235, 0.05));
}

/* Tournament Section */
.tournament-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.tournament-grid .content-grid {
    margin-bottom: 2rem;
}

.tournament-card {
    border-left: 4px solid #ef4444;
}

.weekend-tournament {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border: 2px solid rgba(239, 68, 68, 0.3);
}

/* Festival Section */
.festival-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.festival-card {
    border-left: 4px solid #f97316;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
}

/* Referral Section */
.referral-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.referral-content .content-grid {
    margin-bottom: 3rem;
}

.commission-card {
    border-left: 4px solid #22c55e;
}

.bonus-referral-card {
    border-left: 4px solid #10b981;
}

.referral-steps {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(45, 45, 45, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Deposit Section */
.deposit-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.advantages-card {
    border-left: 4px solid #3b82f6;
}

.deposit-bonus-card {
    border-left: 4px solid #1d4ed8;
}

/* Terms Section */
.terms-content .content-grid {
    margin-bottom: 2rem;
}

.general-terms-card {
    border-left: 4px solid #6b7280;
}

.withdrawal-terms-card {
    border-left: 4px solid #4b5563;
}

.game-turnover-card {
    background: rgba(45, 45, 45, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 2rem;
}

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

.turnover-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.game-type {
    font-weight: 600;
    color: #ffffff;
}

.turnover-rate {
    color: #ffd700;
    font-weight: 600;
}

/* Contact Section */
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-channels-card {
    border-left: 4px solid #06b6d4;
}

.service-hours-card {
    border-left: 4px solid #0891b2;
}

/* Tips Section */
.tips-content .content-grid {
    align-items: flex-start;
}

.tips-card {
    border-left: 4px solid #8b5cf6;
}

.faq-card {
    border-left: 4px solid #7c3aed;
}

.faq-item {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

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

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

/* Summary Section */
.summary-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.benefits-highlight {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.benefits-list li:before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
    margin-top: 0.1rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.urgent-notice {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
}

.urgent-notice p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(45, 45, 45, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.contact-details li {
    color: #e0e0e0;
}

.closing-message {
    margin: 2rem 0 0 0;
    font-style: italic;
    color: #ffd700;
    font-size: 1.1rem;
}

/* List Styles */
.tournament-prizes, .festival-benefits, .commission-benefits, .referral-rewards,
.deposit-advantages, .deposit-bonuses, .terms-list, .withdrawal-terms,
.service-hours, .tips-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.tournament-prizes li, .festival-benefits li, .commission-benefits li, .referral-rewards li,
.deposit-advantages li, .deposit-bonuses li, .terms-list li, .withdrawal-terms li,
.service-hours li, .tips-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.tournament-prizes li:before, .festival-benefits li:before, .commission-benefits li:before,
.referral-rewards li:before, .deposit-advantages li:before, .deposit-bonuses li:before,
.terms-list li:before, .withdrawal-terms li:before, .service-hours li:before, .tips-list li:before {
    content: "•";
    color: #ffd700;
    font-weight: bold;
    margin-top: 0.3rem;
}

.tournament-prizes li:last-child, .festival-benefits li:last-child, .commission-benefits li:last-child,
.referral-rewards li:last-child, .deposit-advantages li:last-child, .deposit-bonuses li:last-child,
.terms-list li:last-child, .withdrawal-terms li:last-child, .service-hours li:last-child,
.tips-list li:last-child {
    border-bottom: none;
}

/* Responsive Design for Promotion Page */
@media (max-width: 768px) {
    .promotion-section {
        padding: 2.5rem 0;
    }

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

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .weekly-promos .promo-layout {
        grid-template-columns: 1fr;
    }

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

    .tournament-grid .content-grid {
        grid-template-columns: 1fr;
    }

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

    .referral-content .content-grid {
        grid-template-columns: 1fr;
    }

    .deposit-content .content-grid {
        grid-template-columns: 1fr;
    }

    .terms-content .content-grid {
        grid-template-columns: 1fr;
    }

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

    .tips-content .content-grid {
        grid-template-columns: 1fr;
    }

    .game-turnover-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .promotion-section {
        padding: 2rem 0;
    }

    .promo-card, .feature-card {
        padding: 1.5rem;
    }

    .steps-section, .referral-steps {
        padding: 1.5rem;
    }

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

    .step-content h5 {
        font-size: 0.9rem;
    }

    .step-content p {
        font-size: 0.8rem;
    }

    .benefits-highlight, .urgent-notice, .contact-info {
        padding: 1.5rem;
    }

    .benefits-list, .contact-details {
        margin: 1rem 0;
    }

    .closing-message {
        font-size: 1rem;
    }
}

/* =================================
   REGISTER PAGE STYLES
   ================================= */

.register-section {
    min-height: calc(100vh - 120px);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-content {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.register-form .form-label {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.register-form .form-input {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    padding: 15px 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.register-form .form-input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

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

.register-form .btn-register {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    text-transform: none;
}

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

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

.register-form .btn-login {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 12px 30px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Responsive Design for Register Page */
@media (max-width: 768px) {
    .register-section {
        min-height: calc(100vh - 60px);
        padding: 1rem 0;
    }

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

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

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

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

    .register-form .form-input {
        padding: 12px 16px;
    }

    .register-form .btn-register {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .register-form .btn-login {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}
