/* Global Styles */
:root {
    --primary-color: #2E3192;
    --secondary-color: #1BFFFF;
    --accent-color: #D4145A;
    --text-color: #333333;
    --light-color: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Age Verification Section */
.age-verification-overlay {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    z-index: 9999;
}

.age-verification-content {
    background-color: transparent;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.age-verification-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--light-color);
}

.age-verification-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.age-verification-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-verification-buttons .btn {
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    min-width: 150px;
}

.age-verify-yes {
    background: var(--gradient);
    border: none;
}

.age-verify-no {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: var(--text-color);
}

.age-verification-overlay.hidden {
    display: none;
}

@media (max-width: 767.98px) {
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .container {
        padding-right: 15px;
        padding-left: 15px;
        overflow: hidden;
    }

    .row {
        margin-right: -15px;
        margin-left: -15px;
    }

    .col-12, .col-md-6, .col-lg-6 {
        padding-right: 15px;
        padding-left: 15px;
    }

    .hero-section {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-section .container {
        padding: 0 15px;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        max-width: 100%;
    }

    .age-verification-content {
        padding: 0 15px;
        width: 100%;
    }

    .age-verification-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    .age-verification-buttons .btn {
        width: 200px;
    }

    .info-block {
        margin: 0;
        padding: 2rem 15px;
    }

    .info-block img {
        margin: 1rem 0;
        max-width: 100%;
        height: auto;
    }

    .about-section,
    .cta-section,
    .info-blocks-section {
        padding: 2rem 0;
    }

    .about-content,
    .cta-content,
    .info-block {
        padding: 0 15px;
    }
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: lowercase;
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, rgba(46, 49, 146, 0.05) 0%, rgba(27, 255, 255, 0.05) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.signup-btn {
    background: var(--gradient);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 49, 146, 0.3);
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* About Section Styles */
.about-section {
    padding-top: 120px;
    background: linear-gradient(135deg, rgba(46, 49, 146, 0.02) 0%, rgba(27, 255, 255, 0.02) 100%);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.about-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.game-info-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.game-info-card:hover {
    transform: translateY(-5px);
}

.game-info-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.game-info-card p {
    margin-bottom: 1.5rem;
}

.game-info-card ul {
    list-style: none;
    padding-left: 0;
}

.game-info-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.game-info-card ul li::before {
    content: '•';
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

.responsible-gaming-notice {
    background: linear-gradient(135deg, rgba(46, 49, 146, 0.05) 0%, rgba(27, 255, 255, 0.05) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.responsible-gaming-notice h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.responsible-gaming-notice ul {
    list-style: none;
    padding-left: 0;
}

.responsible-gaming-notice ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.responsible-gaming-notice ul li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* CTA Section Styles */
.cta-section {
    background: var(--gradient);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
}

.cta-content {
    position: relative;
    padding: 4rem 2rem;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: var(--light-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--accent-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Information Blocks Section Styles */
.info-blocks-section {
    background: linear-gradient(135deg, rgba(46, 49, 146, 0.02) 0%, rgba(27, 255, 255, 0.02) 100%);
    padding: 4rem 0;
}

.info-block {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-block:last-child {
    border-bottom: none;
}

.info-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.info-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-list li::before {
    content: '→';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.info-block img {
    transition: transform 0.3s ease;
}

.info-block:hover img {
    transform: translateY(-5px);
}

/* Comments Section Styles */
.comments-section {
    background: linear-gradient(135deg, rgba(46, 49, 146, 0.03) 0%, rgba(27, 255, 255, 0.03) 100%);
}

.comment-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.comment-card:hover {
    transform: translateY(-5px);
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--secondary-color);
}

.comment-meta h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-color);
}

.comment-meta p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
}

.comment-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin: 0;
}

.comment-body p::before,
.comment-body p::after {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.comment-body p::before {
    content: open-quote;
    margin-right: 0.2rem;
}

.comment-body p::after {
    content: close-quote;
    margin-left: 0.2rem;
}

@media (max-width: 767.98px) {
    .comment-card {
        margin-bottom: 1.5rem;
    }
}

/* Footer Section Styles */
.footer-section {
    background: linear-gradient(135deg, rgba(46, 49, 146, 0.95) 0%, rgba(27, 255, 255, 0.95) 100%);
    color: var(--light-color);
    padding: 4rem 0 2rem;
    position: relative;
}

.responsible-gambling-alert {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.responsible-gambling-alert h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.responsible-gambling-alert p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.responsible-gambling-alert a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.responsible-gambling-alert a:hover {
    color: var(--light-color);
}

.footer-block {
    margin-bottom: 2rem;
}

.footer-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-block p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.legal-notice {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 1rem;
    text-align: center;
}

.legal-notice p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.age-restriction {
    font-size: 1rem !important;
    color: #FFD700;
    opacity: 1 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-links {
    margin: 1.5rem 0;
}

.footer-link {
    color: var(--light-color);
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFD700;
}

.footer-link::after {
    content: '|';
    position: absolute;
    right: -1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-link:last-child::after {
    display: none;
}

.footer-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-badge {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-badge:hover {
    opacity: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .footer-section {
        padding: 3rem 0 1.5rem;
    }

    .responsible-gambling-alert h3 {
        font-size: 1.5rem;
    }

    .responsible-gambling-alert p {
        font-size: 1rem;
    }

    .footer-block {
        text-align: center;
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .info-block {
        padding: 2rem 0;
    }
    
    .info-block h3 {
        font-size: 1.8rem;
    }
    
    .info-block img {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .hero-section {
        padding: 2rem 0;
        min-height: auto;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .info-block {
        text-align: center;
    }
    
    .info-list {
        text-align: left;
    }
}

/* Policy Pages Styles */
.policy-content {
    padding-top: 120px;
    padding-bottom: 60px;
}

.policy-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.policy-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.policy-section ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.policy-section ul li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    top: -0.2rem;
}

@media (max-width: 767.98px) {
    .policy-content {
        padding-top: 100px;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 1rem;
    }
}

/* Signup Page Styles */
.signup-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.signup-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.signup-content h1 {
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.signup-description {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.signup-form-container {
    margin-bottom: 30px;
}

.signup-form .form-group label {
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
}

.signup-form .form-control {
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.signup-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

.signup-form .form-check-label {
    font-size: 14px;
    color: #666;
}

.signup-form .form-check-label a {
    color: #007bff;
    text-decoration: none;
}

.signup-form .form-check-label a:hover {
    text-decoration: underline;
}

.signup-submit-btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    transition: all 0.3s ease;
}

.signup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.signup-features {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.signup-features h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.signup-features ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.signup-features ul li {
    color: #666;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.signup-features ul li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Signup Success Message Styles */
.signup-success-message {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: none;
}

.signup-success-message.visible {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.signup-success-message .success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 40px;
    animation: scaleIn 0.5s ease;
}

.signup-success-message h3 {
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.signup-success-message p {
    color: #666;
    margin-bottom: 10px;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
} 