* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.logo i {
    color: #ff6b6b;
    margin-right: 0.5rem;
    font-size: 2rem;
}

.highlight {
    color: #ff6b6b;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b6b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    margin-top: 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: -1;
    filter: brightness(0.5);
}


.casino-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.casino-icons i {
    position: absolute;
    font-size: 3rem;
    color: #ff6b6b;
    animation: float 6s ease-in-out infinite;
}

.casino-icons i:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.casino-icons i:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.casino-icons i:nth-child(3) { top: 50%; left: 5%; animation-delay: 2s; }
.casino-icons i:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 3s; }
.casino-icons i:nth-child(5) { bottom: 10%; left: 20%; animation-delay: 4s; }
.casino-icons i:nth-child(6) { top: 40%; right: 5%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #b8b8b8;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Featured Casino */
.featured-casino {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.casino-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
    z-index: -1;
}

.casino-rank {
    font-size: 4rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-right: 2rem;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.casino-logo {
    margin-right: 2rem;
}

.logo-placeholder {
    width: 120px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #6b46c1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

.logo-placeholder i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.casino-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.score {
    font-size: 3rem;
    font-weight: bold;
    color: #4ade80;
}

.rating-details {
    text-align: left;
}

.certified {
    background: #4ade80;
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.location {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feedback {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-methods i {
    font-size: 2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods i:hover {
    opacity: 1;
}

.visit-btn {
    background: linear-gradient(45deg, #ff6b6b, #6b46c1);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

/* Info Section */
.info-section {
    padding: 4rem 0;
}

.info-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ff6b6b;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    max-width: 400px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateX(0);
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-icon i {
    color: #ff6b6b;
    font-size: 2rem;
}

.cookie-text h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.cookie-text p {
    color: #b8b8b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4ade80;
    color: #000;
}

.cookie-btn.decline {
    background: transparent;
    color: #b8b8b8;
    border: 1px solid #b8b8b8;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b6b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: #b8b8b8;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .casino-card {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-rank {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .casino-info {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cookie-notice {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}


/* Additional styles for new pages */

/* Guides Page Styles */
.guides-header, .licensing-header {
    margin-top: 80px;
    padding: 4rem 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
}

.guides-header h1, .licensing-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-categories {
    padding: 3rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card i {
    font-size: 3rem;
    color: #6b46c1;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.category-card p {
    color: #b8b8b8;
}

.featured-guides {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.featured-guides h2 {
    text-align: center;
    color: #ff6b6b;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-image {
    background: linear-gradient(45deg, #ff6b6b, #6b46c1);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-image i {
    font-size: 3rem;
    color: #fff;
}

.guide-content {
    padding: 1.5rem;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.guide-category {
    background: #ff6b6b;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.read-time {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.guide-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.guide-card p {
    color: #b8b8b8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.guide-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.guide-highlights span {
    background: rgba(107, 70, 193, 0.2);
    color: #6b46c1;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.read-guide-btn {
    background: linear-gradient(45deg, #ff6b6b, #6b46c1);
    color: #fff;
    text-decoration: none;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.read-guide-btn:hover {
    transform: translateY(-2px);
}

.quick-tips {
    padding: 4rem 0;
}

.quick-tips h2 {
    text-align: center;
    color: #ff6b6b;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.tip-card i {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.tip-card h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #b8b8b8;
    font-size: 0.9rem;
}

/* Licensing Page Styles */
.agco-overview {
    padding: 4rem 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-text h2 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.overview-text p {
    color: #b8b8b8;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.key-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.point i {
    color: #4ade80;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.point span {
    color: #fff;
    line-height: 1.6;
}

.overview-visual {
    display: flex;
    justify-content: center;
}

.license-badge {
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: #000;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
}

.license-badge i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.badge-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.verification-guide {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.verification-guide h2 {
    text-align: center;
    color: #ff6b6b;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.verification-steps {
    display: grid;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.step-number {
    background: #ff6b6b;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #b8b8b8;
    line-height: 1.6;
}

.licensed-operators {
    padding: 4rem 0;
}

.licensed-operators h2 {
    text-align: center;
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.operators-intro {
    text-align: center;
    color: #b8b8b8;
    margin-bottom: 3rem;
}

.operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.operator-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.operator-info h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.license-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.license-number {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status.active {
    background: #4ade80;
    color: #000;
}

.operator-card p {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.verification-note {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.verification-note i {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.verification-note p {
    color: #fff;
    margin: 0;
}

.player-protections {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.player-protections h2 {
    text-align: center;
    color: #ff6b6b;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.protections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.protection-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.protection-item i {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.protection-item h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.protection-item ul {
    list-style: none;
    padding: 0;
}

.protection-item li {
    color: #b8b8b8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.protection-item li::before {
    content: '•';
    color: #ff6b6b;
    position: absolute;
    left: 0;
}

.unlicensed-warning {
    padding: 4rem 0;
    background: rgba(255, 107, 107, 0.1);
}

.warning-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #ff6b6b;
    border-radius: 15px;
    padding: 2rem;
}

.warning-icon i {
    font-size: 4rem;
    color: #ff6b6b;
}

.warning-text h2 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.warning-text p {
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.warning-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.warning-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.warning-point i {
    color: #ef4444;
    font-size: 1.2rem;
}

.warning-point span {
    color: #fff;
}

.licensing-resources {
    padding: 4rem 0;
}

.licensing-resources h2 {
    text-align: center;
    color: #ff6b6b;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.resource-card i {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.resource-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #b8b8b8;
    margin-bottom: 1.5rem;
}

.resource-link {
    background: linear-gradient(45deg, #ff6b6b, #6b46c1);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-section {
    margin-top: 80px;
    padding: 4rem 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    color: #b8b8b8;
    font-size: 1.1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.contact-form h2 {
    color: #ff6b6b;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(45deg, #ff6b6b, #6b46c1);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.contact-info h2 {
    color: #ff6b6b;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.contact-method i {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-method h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #b8b8b8;
    margin: 0;
}

.help-resources {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
}

.help-resources h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.resource {
    margin-bottom: 1rem;
}

.resource strong {
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}

.resource p {
    color: #b8b8b8;
    margin: 0;
    font-size: 0.9rem;
}

/* Reviews Page Styles */
.reviews-header {
    margin-top: 80px;
    padding: 4rem 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
}

.reviews-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-list {
    padding: 4rem 0;
}

.reviews-grid {
    display: grid;
    gap: 2rem;
}

.casino-review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.casino-review-card:hover {
    transform: translateY(-5px);
}

.casino-header {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(107, 70, 193, 0.1));
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.casino-header .casino-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.casino-header .casino-logo i {
    color: #ff6b6b;
    font-size: 2rem;
}

.casino-header .casino-logo span {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.casino-rating {
    text-align: right;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4ade80;
    display: block;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.casino-details {
    padding: 2rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pros h4 {
    color: #4ade80;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cons h4 {
    color: #ef4444;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    color: #b8b8b8;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.casino-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: #b8b8b8;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    color: #fff;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icons i {
    font-size: 1.5rem;
    opacity: 0.7;
}

.review-btn {
    background: linear-gradient(45deg, #ff6b6b, #6b46c1);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.review-btn:hover {
    transform: translateY(-2px);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .overview-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .warning-content {
        flex-direction: column;
        text-align: center;
    }
    
    .warning-points {
        grid-template-columns: 1fr;
    }
    
    .categories-grid,
    .guides-grid,
    .operators-grid,
    .protections-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .guides-header h1,
    .licensing-header h1,
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .featured-guides h2,
    .quick-tips h2,
    .licensing-resources h2 {
        font-size: 1.5rem;
    }
}


.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.4;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.4;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Import additional styles for new pages */
@import url('additional-styles.css');

/* Age Verification Modal */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease;
}

.age-verification-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #ff6b6b;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
    animation: slideUp 0.5s ease;
}

.age-verification-header {
    background: linear-gradient(45deg, #ff6b6b, #6b46c1);
    padding: 2rem;
    text-align: center;
    border-radius: 18px 18px 0 0;
}

.age-verification-header i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.age-verification-header h2 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
}

.age-verification-content {
    padding: 2rem;
}

.age-verification-content p {
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.age-verification-content ul {
    color: #b8b8b8;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.age-verification-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.age-verification-warning {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.age-verification-warning i {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.age-verification-warning p {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
}

.age-verification-actions {
    padding: 0 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.age-verify-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.age-verify-btn.confirm {
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: #000;
}

.age-verify-btn.decline {
    background: transparent;
    color: #ef4444;
    border: 2px solid #ef4444;
}

.age-verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.age-verification-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.age-verification-footer p {
    color: #b8b8b8;
    font-size: 0.8rem;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsible Gambling Information Section */
.responsible-gambling-info {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 4rem 0;
    margin-top: 4rem;
    border-top: 3px solid #ff6b6b;
}

.responsible-gambling-header {
    text-align: center;
    margin-bottom: 3rem;
}

.responsible-gambling-header i {
    font-size: 4rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.responsible-gambling-header h2 {
    color: #ff6b6b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.responsible-gambling-header p {
    color: #b8b8b8;
    font-size: 1.2rem;
}

.gambling-warnings {
    margin-bottom: 4rem;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.warning-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.warning-card.critical {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    transform: scale(1.02);
}

.warning-card:hover {
    transform: translateY(-5px);
}

.warning-card.critical:hover {
    transform: scale(1.02) translateY(-5px);
}

.warning-card i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.warning-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.warning-card p {
    color: #b8b8b8;
    line-height: 1.6;
}

.problem-gambling-signs {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 4rem;
}

.problem-gambling-signs h3 {
    color: #ff6b6b;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.signs-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.signs-column ul {
    list-style: none;
    padding: 0;
}

.signs-column li {
    color: #b8b8b8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.signs-column li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0;
}

.help-resources-section {
    margin-bottom: 4rem;
}

.help-resources-section h3 {
    color: #4ade80;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.help-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.help-resource {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.help-resource.primary {
    background: rgba(74, 222, 128, 0.1);
    border: 2px solid #4ade80;
    transform: scale(1.02);
}

.help-resource:hover {
    transform: translateY(-3px);
}

.help-resource.primary:hover {
    transform: scale(1.02) translateY(-3px);
}

.help-resource i {
    font-size: 2rem;
    color: #4ade80;
    margin-top: 0.2rem;
}

.resource-info h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.resource-info p {
    color: #b8b8b8;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.resource-info a {
    color: #4ade80;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.resource-info a:hover {
    color: #22c55e;
}

.responsible-gambling-tools {
    margin-bottom: 4rem;
}

.responsible-gambling-tools h3 {
    color: #6b46c1;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tool-item {
    background: rgba(107, 70, 193, 0.1);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-3px);
}

.tool-item i {
    font-size: 2.5rem;
    color: #6b46c1;
    margin-bottom: 1rem;
}

.tool-item h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.tool-item p {
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.legal-requirements {
    text-align: center;
}

.legal-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 15px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-box h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-box p {
    color: #fff;
    margin-bottom: 1rem;
}

.legal-box ul {
    text-align: left;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto;
}

.legal-box li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Responsive Design for Responsible Gambling Section */
@media (max-width: 768px) {
    .responsible-gambling-header h2 {
        font-size: 2rem;
    }
    
    .warning-grid,
    .help-resources-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .signs-grid {
        grid-template-columns: 1fr;
    }
    
    .age-verification-modal {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .age-verification-actions {
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .responsible-gambling-header i {
        font-size: 3rem;
    }
    
    .responsible-gambling-header h2 {
        font-size: 1.8rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
    }
    
    .help-resource {
        flex-direction: column;
        text-align: center;
    }
}



/* Genel header stilleri */
.header {
  background-color: #111;
  padding: 20px 0;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo i {
  margin-right: 10px;
  color: #ffcc00;
}

.logo .highlight {
  color: #ff3366;
}

/* Nav - masaüstü */
.nav {
  display: flex;
  gap: 24px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 8px 4px;
}

.nav-link:hover,
.nav-link.active {
  color: #ffcc00;
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    width: 100%;
    display: none;
    background-color: #222;
    margin-top: 20px;
    padding: 10px 0;
    border-radius: 10px;
  }

  .nav-link {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav.open {
    display: flex;
  }
}




.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal-content {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.age-modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.age-modal-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #28a745;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.btn-secondary {
    background-color: #dc3545;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}
.responsible-logos {
  padding: 60px 20px 30px;
  background-color: #f5f5f5;
  text-align: center;
}

.designed{
    background-color: none;
}

.responsible-logos .section-title {
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: #333;
}

.logo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.logo-gallery a img {
  max-width: 100%;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-gallery a img:hover {
  transform: scale(1.05);
  opacity: 0.9;
  filter: none;
}




/* Disclaimer */

.security-responsible-section {
  padding: 40px 20px;
  border-top: 1px solid #e5e7eb;
}

.security-responsible-section .section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.security-responsible-section .section-description {
  font-size: 16px;
  margin-bottom: 30px;
}

.security-content h3 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.security-content p {
  font-size: 15px;
  color: white;
}

.responsible-links {
  margin-top: 20px;
  padding-left: 20px;
}

.responsible-links li {
  margin-bottom: 10px;
}

.legal-disclaimer {
  margin-top: 30px;
  font-size: 13px;
  color: white;
  font-style: italic;
}



/* Login Register */

/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Dark background to match the image */
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #222;
    color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    position: relative; /* For mobile menu positioning */
    z-index: 2000; /* Ensure header is above other content */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.header .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.header .logo i {
    margin-right: 10px;
    color: #ffcc00; /* Highlight color for the dice icon */
}

.header .logo .highlight {
    color: #ffcc00; /* Highlight color for "Ontario" */
}

.header .nav {
    display: flex;
    gap: 25px;
    flex-grow: 1; /* Allow nav to take available space */
    justify-content: center; /* Center nav links */
}

.header .nav-link {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap; /* Prevent links from breaking */
}

.header .nav-link:hover,
.header .nav-link.active {
    color: #ffcc00;
}

.header .nav-auth {
    flex-shrink: 0; /* Prevent auth button from shrinking */
}

.header .nav-auth .ontario-auth-open {
    background-color: #ffcc00;
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.header .nav-auth .ontario-auth-open:hover {
    background-color: #e6b800;
}

.mobile-menu-toggle {
    display: none; /* Hidden by default for desktop */
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    margin-left: 20px; /* Space from auth button */
}

/* Main Content Styles (to mimic the background of the image) */
.main-content {
    padding: 50px 0;
    text-align: center;
    background-image: url('https://sjc.microlink.io/0MdGj-pFsfz1cJt68cBRrW49CKli7eN0DvVLXwGKbTJyo9zsILfIeycTo6ll_DVyrdw3-tLPTDyvscVD1df-oQ.jpeg'); /* Using the provided image as background */
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 80px); /* Adjust based on header height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0f0f0;
    position: relative;
    z-index: 1;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: -1;
}

.hero-section {
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ccc;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    color: #f0f0f0;
    width: 200px;
    text-align: center;
}

.feature-item i {
    font-size: 2.5em;
    color: #ffcc00;
}

/* Modal Overlay Styles */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark, semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top of everything */
}

/* Modal Content Styles */
.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px; /* Rounded corners like the image */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 90%; /* Responsive width */
    text-align: center;
    position: relative;
    color: #333; /* Dark text for white background */
    box-sizing: border-box; /* Include padding in width */
}

.modal-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
    padding: 0; /* Remove default button padding */
}

.modal-close-button:hover {
    color: #666;
}

.modal-content h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #333;
}

.modal-content p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #666;
}

/* Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input {
    width: 100%; /* Full width within form-group */
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
}

.auth-button {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.login-button {
    background-color: #4CAF50; /* Green like the "Yes" button in the image */
    color: white;
}

.login-button:hover {
    background-color: #45a049;
}

.register-button {
    background-color: #f44336; /* Red like the "No" button in the image */
    color: white;
}

.register-button:hover {
    background-color: #da190b;
}

.toggle-form-text {
    margin-top: 20px;
    font-size: 0.95em;
    color: #777;
}

.toggle-form-text a {
    color: #ffcc00; /* Highlight color for links */
    text-decoration: none;
    font-weight: bold;
}

.toggle-form-text a:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: nowrap; /* Prevent wrapping for main header elements */
        justify-content: space-between;
    }

    .header .nav {
        display: none; /* Hide nav links by default on smaller screens */
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 100%; /* Position below the header */
        left: 0;
        background-color: #222;
        border-top: 1px solid #333;
        padding-bottom: 10px;
    }

    .header .nav.active {
        display: flex; /* Show nav links when active */
    }

    .header .nav-link {
        padding: 10px 0;
        border-top: 1px solid #333;
        margin: 0 20px; /* Add horizontal padding for links */
    }

    .header .nav-auth {
        order: 3; /* Move auth button to the end on mobile */
        margin-left: auto; /* Push to the right */
    }

    .mobile-menu-toggle {
        display: block; /* Show toggle button */
        order: 2; /* Position toggle button after logo */
    }

    .hero-section h1 {
        font-size: 2.2em;
    }

    .hero-section p {
        font-size: 1em;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 80%;
    }

    .modal-content {
        padding: 25px;
        width: 95%; /* Slightly wider on very small screens */
    }

    .modal-content h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .header .logo {
        font-size: 20px;
    }

    .header .nav-auth .ontario-auth-open {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .hero-section h1 {
        font-size: 1.8em;
    }

    .hero-section p {
        font-size: 0.9em;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-content h2 {
        font-size: 1.6em;
    }

    .modal-content p {
        font-size: 0.9em;
    }

    .auth-button {
        font-size: 1em;
        padding: 10px 20px;
    }
}


