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

:root {
    --primary-purple: #8B008B;
    --primary-magenta: #C000C0;
    --accent-pink: #FF1493;
    --accent-orange: #FF4500;
    --bg-dark: #000000;
    --bg-dark-2: #1a1a1a;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --border-gradient: linear-gradient(135deg, #FF00FF, #FF1493, #FF4500);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-magenta));
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-login:hover {
    background: var(--text-white);
    color: var(--primary-purple);
    transform: scale(1.05);
}

.btn-register {
    background: var(--accent-orange);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.btn-register:hover {
    background: #FF6347;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 28px;
    cursor: pointer;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50L0 100" stroke="rgba(255,0,255,0.1)" stroke-width="1" fill="none"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-magenta), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    color: var(--text-white);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-magenta);
}

.btn-secondary:hover {
    background: var(--primary-magenta);
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
    border: 3px solid transparent;
    background: var(--border-gradient);
    background-clip: padding-box;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-dark);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--primary-magenta), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--bg-dark-2);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-dark-2), var(--bg-dark-2)), var(--border-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-pink);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0015 0%, #1a0033 100%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.view-all {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: var(--primary-magenta);
    transform: translateX(5px);
}

.game-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--bg-dark-2);
    color: var(--text-white);
    border: 2px solid var(--primary-magenta);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-magenta), var(--accent-pink));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

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

.game-card {
    background: var(--bg-dark-2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-dark-2), var(--bg-dark-2)), var(--border-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.4);
}

.game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.game-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-play {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-magenta), var(--accent-pink));
    color: var(--text-white);
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-play:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.5);
}

/* Live Streaming Section */
.live-streaming {
    padding: 80px 0;
    background: var(--bg-dark);
}

.section-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.live-card {
    background: var(--bg-dark-2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-dark-2), var(--bg-dark-2)), var(--border-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.live-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.4);
}

.live-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.live-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 0, 0, 0.9);
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.viewer-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.live-info {
    padding: 15px;
}

.live-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.live-info p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0015 0%, #1a0033 100%);
}

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

.faq-item {
    background: var(--bg-dark-2);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-dark-2), var(--bg-dark-2)), var(--border-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    overflow: hidden;
}

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

.faq-question:hover {
    color: var(--accent-pink);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-magenta));
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .live-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-purple), var(--primary-magenta));
        padding: 20px;
        box-shadow: 0 4px 20px rgba(255, 0, 255, 0.3);
        z-index: 999;
    }

    .nav-menu.active a {
        margin-bottom: 15px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active a:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .live-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .hero {
        padding: 20px 0;
    }

    .page-header, .contact-page {
        padding: 20px 0 !important;
    }

    .games-page, .promotions, .policy-page {
        padding: 35px 0 !important;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .live-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Promotion Page Styles */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a0033 0%, #330066 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-magenta), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.promotions {
    padding: 80px 0;
    background: var(--bg-dark);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.promotion-card {
    background: var(--bg-dark-2);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-dark-2), var(--bg-dark-2)), var(--border-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
    position: relative;
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 0, 255, 0.4);
}

.promotion-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
}

.promotion-badge.hot {
    background: linear-gradient(135deg, #FF0000, #FF4500);
    animation: pulse 2s infinite;
}

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

.promotion-image {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-magenta));
    padding: 40px;
    text-align: center;
}

.promo-visual h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.promo-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-orange);
    margin: 20px 0;
    text-shadow: 0 4px 20px rgba(255, 69, 0, 0.6);
}

.promo-visual p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.promotion-content {
    padding: 30px;
}

.promotion-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-pink);
}

.promotion-content > p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.promotion-features {
    list-style: none;
    margin-bottom: 25px;
}

.promotion-features li {
    color: var(--text-gray);
    padding: 8px 0;
    font-size: 0.95rem;
}

.promotion-features li::before {
    content: '✓';
    color: var(--accent-pink);
    font-weight: bold;
    margin-right: 10px;
}

.promo-terms {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0015 0%, #1a0033 100%);
}

.promo-terms h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent-pink);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-dark-2);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-dark-2), var(--bg-dark-2)), var(--border-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.terms-content p {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.terms-content ul li {
    color: var(--text-gray);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.terms-content ul li::before {
    content: '•';
    color: var(--accent-pink);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 5px;
}

/* Games Page Styles */
.games-page {
    padding: 80px 0;
    background: var(--bg-dark);
}

.games-page .games-grid {
    grid-template-columns: repeat(3, 1fr);
}

.game-detail {
    background: var(--bg-dark-2);
    padding: 25px;
    border-radius: 10px;
    margin-top: 15px;
}

.game-detail h4 {
    color: var(--accent-pink);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.game-detail p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.game-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.stat-item {
    flex: 1;
    background: rgba(255, 0, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.stat-item .label {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.stat-item .value {
    color: var(--accent-pink);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    background: var(--bg-dark-2);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-dark-2), var(--bg-dark-2)), var(--border-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent-pink);
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-form {
    background: var(--bg-dark-2);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-dark-2), var(--bg-dark-2)), var(--border-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent-pink);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-dark);
    border: 2px solid var(--primary-magenta);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Responsive for Promotion Page */
@media (max-width: 768px) {
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .games-page .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .promo-amount {
        font-size: 3rem;
    }
    
    .promotion-content h3 {
        font-size: 1.5rem;
    }
    
    .games-page .games-grid {
        grid-template-columns: 1fr;
    }
}

/* Policy Pages Styles */
.policy-page {
    padding: 80px 0;
    background: var(--bg-dark);
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-dark-2);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-dark-2), var(--bg-dark-2)), var(--border-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
}

.policy-section h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-section p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.policy-section ul li {
    color: var(--text-gray);
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.8;
}

.policy-section ul li::before {
    content: '▸';
    color: var(--accent-pink);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Responsive for Policy Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
    }

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

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

/* LINE Button */
.line-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #00c300;
    padding: 0;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 195, 0, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: line-pulse 1s infinite;
}

.line-button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 195, 0, 0.6);
    animation-play-state: paused; /* Pause animation on hover */
}

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

/* Download Button */
.download-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #5BC0BE;
    padding: 0;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
    animation: download-pulse 1s infinite;
}

.download-button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.6);
    animation-play-state: paused;
}

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

/* Floating Buttons Wrapper */
.floating-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .floating-buttons {
        right: 10px;
        top: 40%;
    }

    .download-button {
        width: 48px;
        height: 48px;
        font-size: 8px;
    }

    .line-button {
        width: 48px;
        height: 48px;
    }
}
