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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #00091A;
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

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

.text-green {
    color: #00ff88;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: #333;
    position: relative;
    border: 3px solid #00ff88;
}

.age-badge {
    background: #ff4757;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.age-modal-content h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.age-modal-content p {
    color: #666;
    margin-bottom: 15px;
    text-align: left;
}

.age-modal-content ul {
    text-align: left;
    margin: 20px 0;
    color: #666;
}

.age-modal-content li {
    margin-bottom: 8px;
}

.btn-confirm {
    background: #00ff88;
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 15px;
}

.btn-confirm:hover {
    background: #00cc6a;
    transform: translateY(-2px);
}

.btn-exit {
    background: transparent;
    color: #ff4757;
    padding: 15px 40px;
    border: 2px solid #ff4757;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-exit:hover {
    background: #ff4757;
    color: white;
    transform: translateY(-2px);
}

/* Cookie Consent Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cookie-modal-content {
    background: #1a2332;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    color: #ffffff;
    border: 2px solid #00ff88;
}

.cookie-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cookie-modal-content h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.cookie-modal-content p {
    color: #b8c5d6;
    margin-bottom: 15px;
    text-align: left;
}

.btn-accept {
    background: #00ff88;
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 15px;
}

.btn-accept:hover {
    background: #00cc6a;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: #00ff88;
    padding: 15px 40px;
    border: 2px solid #00ff88;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-reject:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-2px);
}

/* Main Content Initially Hidden */
.main-content {
    display: none;
}

/* Header */
.header {
    background: rgba(10, 20, 40, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.nav-logo img {
    width: 30px;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00ff88;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url(/wp-content/themes/techfile_qmnyrzlq/assets/images/hbcg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
   margin-left: auto;
   
   width: 75%;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
}

.hero-content {
   
   max-width: 460px;
    position: relative;
    z-index: 3;
}

.hero-sup {
    border-radius: 60px;
background: rgba(255, 255, 255, 0.15);
padding: 10px 15px;
font-size: 14px;
width: fit-content;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 14px;
    margin-bottom: 30px;
    color: #b8c5d6;
}

.hero-image {
    text-align: center;
    position: absolute;
    left: 0;
    max-width: 388px;
    width: 28%;
}

.hero-image img {
    width: 100%;
}

.hero-character {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    background-image: 
        radial-gradient(circle at 30% 40%, #fff 10px, transparent 10px),
        radial-gradient(circle at 70% 40%, #fff 10px, transparent 10px),
        radial-gradient(circle at 50% 70%, #fff 20px, transparent 20px);
}

.hero-character::before {
    content: '🏴‍☠️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
}

.hero-bonus-card {
   position: relative;
    background: rgba(26, 35, 50, 0.9);
    border: 2px solid #00ff88;
    border-radius: 15px;
    padding: 15px;
    max-width: 416px;
  flex: 1 0 100%;
    border-radius: 30px;
border: 2px solid rgba(21, 197, 109, 0.30);
background: #0F1D39;
box-shadow: 0 0 20px 0 rgba(21, 197, 109, 0.30);
}

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

.bonus-logo {
    font-weight: 600;
    color: #020E2B;
    font-size: 1rem;
    border-radius: 60px;
background: #15C56D;
padding: 10px 15px;
}

.bonus-rating {
    color: #ffd700;
    font-size: 0.9rem;
}

.bonus-offer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bonus-offer h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.bonus-details {
  
    gap: 5px;
    margin-bottom: 15px;
}

.det {
    border-radius: 60px;
background: rgba(255, 255, 255, 0.15);
padding: 7px 10px;
display: inline;
font-size: 10px;
}

.bonus-details span {

    color: #b8c5d6;
}

.btn-claim {
    background: #00ff88;
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 60px;
background: linear-gradient(0deg, #15C56D 0%, #45FFA2 100%);
}

.btn-claim:hover {
    background: #00cc6a;
    transform: translateY(-2px);
}

/* Casinos Section */
.casinos {
    padding: 80px 0;
  
}

.casino-card {
    border-radius: 22px;
border: 2px solid rgba(21, 197, 109, 0.30);
background: #0F1D39;
    padding: 25px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.casino-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 204, 170, 0.15);
    border-color: #00cc6a;
}

.casino-rank {
    grid-area: rank;
    background: #00cc6a;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.casino-logo-section {
    grid-area: logo;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 110px;
    width: 100%;
}

.casino-logo-section img {
    width: 100%;
}

.casino-logo {
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
    text-align: center;
}

.casino-logo.duelz {
    color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.casino-logo.casino21 {
    color: #ffd700;
    position: relative;
}

.casino-logo.casino21::before {
    content: '👑';
    position: absolute;
    top: -5px;
    left: -25px;
    font-size: 1rem;
}

.casino-logo.leovegas {
    color: #ff6b35;
    position: relative;
}

.casino-logo.leovegas::before {
    content: '🦁';
    position: absolute;
    top: -5px;
    left: -25px;
    font-size: 1rem;
}

.casino-logo.betway {
    color: #00ff88;
    text-transform: lowercase;
}

.casino-logo.casumo {
    color: #00d4aa;
    font-weight: 800;
}

.casino-logo.mrq {
    color: #4169e1;
    font-weight: 800;
}

.casino-bonus-info {
    grid-area: bonus;
}

.bonus-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-amount {
    font-size: 1.1rem;
    color: #00cc6a;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.casino-deposit {
    grid-area: deposit;
    text-align: center;
}

.deposit-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deposit-amount {
    font-size: 1.2rem;
    color: #00cc6a;
    font-weight: 700;
}

.casino-features {
    grid-area: features;
}

.features-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.feature-tag {
    background: #1a2332;
    color: #b8c5d6;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid #2a3f5f;
}

.cas-end {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.casino-rating {
   display: flex;
   align-items: center;
   gap: 8px;
   justify-content: center;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.rating-value {
    display: block;
    font-size: 1.3rem;
    color: #00cc6a;
    font-weight: 700;
}

.btn-get-bonus {
    grid-area: button;
    background: #00cc6a;
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-get-bonus:hover {
    background: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 204, 170, 0.4);
}

.casino-disclaimer {
    grid-area: disclaimer;
    font-size: 0.7rem;
    color: #fff;
    text-align: center;
   
   
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-image: url(/wp-content/themes/techfile_qmnyrzlq/assets/images/abcg.png);
    background-position: center;
    background-size: cover;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.why-choose-text p {
    margin-bottom: 20px;
    font-size: 14px;
}

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

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

.stat-item h3 {
    font-size: 2.5rem;
    color: #00ff88;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    color: #b8c5d6;
    font-size: 0.9rem;
}

.why-choose-image img {
  max-width: 476px;
  width: 100%;
}

/* Ready to Begin Section */
.ready-begin {
    padding: 80px 0;
    background: rgba(21, 197, 109, 0.15);
    text-align: center;
}

.ready-begin h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ready-begin p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ffd700;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.about > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature {
    text-align: center;
    padding: 30px;
    background: rgba(26, 35, 50, 0.5);
    border-radius: 15px;
    border: 1px solid #00ff88;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.feature-icon img {
    width: 49px;
}

.feature h3 {
    color: #00ff88;
    margin-bottom: 15px;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: rgba(10, 20, 40, 0.5);
}

.mission-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: center;
    border-radius: 30px;
background: rgba(21, 197, 109, 0.15);
padding: 40px 20px;
}

.mission-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.mission-image {
    max-width: 219px;
    width: 100%;
}

.mission-image img {
    width: 100%;
}

.cards-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
}

.cards-image::before {
    content: '🃏';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #00ff88;
    border-radius: 10px;
    background: rgba(26, 35, 50, 0.8);
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00cc6a;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b8c5d6;
}

/* Footer */
.footer {
    background: #0f1419;
    padding: 60px 0 30px;
    border-top: 2px solid #00cc6a;
}

.gambling-organizations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
   max-width: 780px;
   width: 100%;
   margin: 0 auto 40px;
}

.org-logo {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.org-logo img {
  max-width: 100%;
}

.org-logo:hover {
    opacity: 1;
}

.org-logo.gamcare {
    color: #9b59b6;
}

.org-logo.therapy {
    background: #e67e22;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.org-logo.gamstop {
    color: #3498db;
    font-weight: 700;
}

.org-logo.commission {
    color: #95a5a6;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    text-align: center;
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00cc6a;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #b8c5d6;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #00cc6a;
}

.play-responsibly {
    background: #1a2332;
    border: 2px solid #2a3f5f;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.responsible-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.age-badge-footer {
    background: #ff4757;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.play-responsibly h3 {
    color: #00cc6a;
    font-size: 1.5rem;
    margin: 0;
}

.play-responsibly p {
    color: #b8c5d6;
    margin: 10px 0;
    line-height: 1.6;
}

.play-responsibly p:first-of-type {
    margin-top: 0;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #2a3f5f;
    padding-top: 30px;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
    margin: 5px 0;
}

.licensed-text {
    color: #00cc6a !important;
    font-weight: 600;
}

.disclaimer-text {
    margin-top: 20px;
}

.disclaimer-text p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
}

/* Thank You Modal */
.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.thank-you-content {
    background: #1a2332;
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    color: #ffffff;
    border: 2px solid #00ff88;
}

.thank-you-content h2 {
    color: #00ff88;
    margin-bottom: 20px;
}

.rat-mob {
    display: none;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-bonus-card {
        position: static;
        margin-top: 30px;
        width: 100%;
    }

    .hero-container {
        flex-direction: column;
        width: 100%;
        margin: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
      max-width: 100%;
    }

    .hero-image {
        position: relative;
        left: -20px;
        align-self: flex-start;
        width: 100%;
    }

    .hero-bonus-card {
        flex: 0 1 100%;

    }
    
    .why-choose-content,
    .mission-content {
        grid-template-columns: 1fr;
       
    }
    
    .casino-card {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "rank"
            "logo"
            "bonus"
            "deposit"
            "features"
            "rating"
            "button"
            "disclaimer";
      
        gap: 15px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .casino-card {
        padding: 20px 15px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .rat-mob {
        display: flex;
        align-items: center;
        gap: 6px;
        justify-content: flex-end;
  flex: 0 1 75%;
    }

    .cas-end {
        flex: 0 1 100%;
    }

    .btn-get-bonus {
        width: 100%;
        text-align: center;
    }

    .casino-features {
        flex: 0 1 100%;
    }

    .casino-rating {
        display: none;
    }
    
    .feature-tags {
        justify-content: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .gambling-organizations {
        flex-wrap: wrap;
        gap: 20px;
    }

    .org-logo {
        flex: 0 1 28%;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 500px) {
    .age-modal-content,
    .cookie-modal-content {
        padding: 20px;
        margin: 10px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn-confirm,
    .btn-exit,
    .btn-accept,
    .btn-reject {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
    
    .casino-card {
        padding: 15px;
    }
    .casino-bonus-info {
        flex: 0 1 60%;
    }
    
    .bonus-amount {
        font-size: 1rem;
    }
    
    .gambling-organizations {
        gap: 15px;
    }
    
    .org-logo {
        font-size: 0.8rem;
    }
    
    .play-responsibly {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .responsible-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .age-badge-footer {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

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

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card,
.feature,
.stat-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #00ff88;
    outline-offset: 2px;
}


              .page {
                padding: 140px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                max-width: 1200px;
                padding: 40px 20px 0;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              
                

                