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

html {
    scroll-behavior: smooth;
}

body {
   font-family: "Encode Sans Condensed", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background: #0F2C2A;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===================================
   Container
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===================================
   Age Verification Modal
   =================================== */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20000;
    display: none;
    animation: fadeIn 0.3s ease;
}

.age-verification.show {
    display: block;
}

.age-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.age-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: linear-gradient(135deg, #0a3d3d 0%, #051515 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: slideIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.age-content {
    text-align: center;
}

.age-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

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

.age-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.age-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    line-height: 1.6;
}

.age-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-confirm-age,
.btn-deny-age {
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-confirm-age {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0a3d3d;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.btn-deny-age {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-deny-age:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.age-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-top: 20px;
}

/* ===================================
   Cookie Consent
   =================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 61, 61, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease;
    display: none;
}

.cookie-consent.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

.cookie-content a:hover {
    color: #ffed4e;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-decline {
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.btn-accept {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0a3d3d;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
  
    z-index: 1000;
    
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.logo:hover {
    color: #ffd700;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.nav-menu li a {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
}

.nav-menu li a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
    overflow: hidden;
    background-image: url(/wp-content/themes/techfile_eo2idvj9/assets/images/hero.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a3d3d 0%, #0a2828 50%, #051515 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0a3d3d;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

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

.hero-cards {
    margin-top: 40px;
}

.cards-image {
    max-width: 300px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

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

.hero-coins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.coin {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: rotate 4s linear infinite;
}

.coin-left {
    left: 10%;
    top: 20%;
    animation: rotate 4s linear infinite, float 3s ease-in-out infinite;
}

.coin-right {
    right: 10%;
    top: 30%;
    animation: rotate 4s linear infinite reverse, float 3.5s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.scroll-indicator {
    display: block;
    width: 68px;
    margin: 0 auto 40px;
}

.scroll-indicator img {
    width: 100%;
    display: block;
}

.scroll-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Section Styles
   =================================== */
.section {
    position: relative;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-box {
    border-radius: 10px;
border: 1px solid #188A77;
background: rgba(14, 43, 41, 0.70);
box-shadow: 0 0 28.8px 0 rgba(24, 138, 119, 0.60), 0 0 22.6px 0 rgba(24, 138, 119, 0.50) inset;
padding: 20px;
width: 100%;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
    position: relative;
    z-index: 3;
}

.section-title.white {
    color: #ffffff;
}

.section-description {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.section-date {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Casino Sites Section
   =================================== */
.casinos-section {
    background: linear-gradient(180deg, #0a3d3d 0%, #0a2828 100%);
}

.section-icon {
    text-align: center;
    margin-bottom: 30px;
}

.section-icon img {
    max-width: 100px;
    margin: 0 auto;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
}

/* ===================================
   Best Casino Sites Section
   =================================== */
.best-casinos-section {
    background: linear-gradient(180deg, #0a2828 0%, #051515 100%);
    position: relative;
    background-image: url(/wp-content/themes/techfile_eo2idvj9/assets/images/cbcg.webp);
    background-position: center;
    background-size: cover;
}

.casino-cards {
    display: flex;
   justify-content: space-between;
    gap: 16px;
    max-width: 756px;
    margin: 0 auto 40px 0;
    position: relative;
    z-index: 3;
}

.casino-card {
    border-radius: 10px;
border: 1px solid #188A77;
background: rgba(14, 43, 41, 0.70);
box-shadow: 0 0 22.6px 0 rgba(24, 138, 119, 0.50) inset, 0 0 28.8px 0 rgba(24, 138, 119, 0.60);
backdrop-filter: blur(4.699999809265137px);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.casino-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.casino-card p {
    font-size: 12px;
}

.casino-logo {
    margin-bottom: 24px;
    border-radius: 10px;
background: #0E2B29;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    max-height: 100%;
    width: 95%;
    display: block;
    margin: 0 auto;
}

.casino-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex: 0 1 100%;
}

.rating-number {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    display: block;
   
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.star {
    font-size: 20px;
    color: rgba(255, 215, 0, 0.3);
}

.star.filled {
    color: #ffd700;
}

.btn-casino {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0a3d3d;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
}

.btn-casino:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.casino-model {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 400px;
    pointer-events: none;
}

.model-image {
    width: 100%;
    height: auto;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-section {
    background: linear-gradient(180deg, #051515 0%, #0a2828 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

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

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

/* ===================================
   Find Section
   =================================== */
.find-section {
    background: linear-gradient(180deg, #0a2828 0%, #051515 100%);
}

/* ===================================
   Evaluation Section
   =================================== */
.evaluation-section {
    background: linear-gradient(180deg, #051515 0%, #0a2828 100%);
}

.evaluation-list,
.best-list {
    max-width: 800px;
    margin: 30px auto;
    padding-left: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.evaluation-list li,
.best-list li {
    font-size: 16px;
    line-height: 2;
    position: relative;
    padding-left: 20px;
    opacity: 0.9;
}

.evaluation-list li::before,
.best-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 24px;
    line-height: 1.5;
}

.evaluation-note,
.best-note {
    text-align: center;
    font-size: 14px;
    max-width: 800px;
    margin: 30px auto 0;
    opacity: 0.8;
    font-style: italic;
}

/* ===================================
   Trust Section
   =================================== */
.trust-section {
    background: linear-gradient(180deg, #0a2828 0%, #051515 100%);
}

/* ===================================
   Best Site Section
   =================================== */
.best-site-section {
    background: linear-gradient(180deg, #051515 0%, #0a2828 100%);
}

/* ===================================
   Perfect Site Section
   =================================== */
.perfect-site-section {
    background: linear-gradient(180deg, #0a2828 0%, #0a3d3d 100%);
    min-height: auto;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(180deg, #0a3d3d 0%, #051515 100%);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 4px;
}

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

.footer-copyright {
    font-size: 13px;
    opacity: 0.6;
   
}

.footer-bot {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cont-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cont-text {
    max-width: 450px;
    width: 100%;
}

.cont-form {
    max-width: 600px;
    width: 100%;
    padding: 24px;
    border-radius: 10px;
border: 1px solid #188A77;
background: #0F2C2A;
box-shadow: 0 0 28.8px 0 rgba(24, 138, 119, 0.60), 0 0 28.8px 0 rgba(24, 138, 119, 0.60), 0 0 22.6px 0 rgba(24, 138, 119, 0.50) inset;
}

form {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

input {
    border-radius: 5px;
border: 1px solid #FFF;
padding: 12px 14px;
background: transparent;
color: #fff;
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1023px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .casino-model {
       
    }
}

@media (max-width: 768px) {
    /* Burger Menu */
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 61, 61, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li a {
        font-size: 18px;
        padding: 10px 20px;
    }

    .cont-inner {
        flex-direction: column;
    }
    
    /* Hero */
    .hero {
        padding: 80px 20px 60px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .cards-image {
        max-width: 200px;
    }
    
    .coin {
        width: 60px;
        height: 60px;
    }
    
    /* Sections */
    .section {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    /* Casino Cards */
    .casino-cards {
      flex-direction: column;
      width: 50%;
    }
    
   
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Cookie Consent */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-accept,
    .btn-decline {
        width: 100%;
    }
    
    /* Footer */
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 24px;
    }

    .best-casinos-section {
        padding-bottom: 0;
    }

    .casino-cards {
        width: 100%;
    }

     .casino-model {
        position: relative;
        max-width: 250px;
        margin: 40px auto 0;
    }
    
    .rating-number {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    /* Age Verification */
    .age-modal {
        padding: 30px 25px;
        width: 95%;
    }
    
    .age-icon {
        font-size: 48px;
    }
    
    .age-title {
        font-size: 22px;
    }
    
    .age-text {
        font-size: 14px;
    }
    
    .btn-confirm-age,
    .btn-deny-age {
        padding: 12px 25px;
        font-size: 14px;
    }
}

              .page {
                padding: 140px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                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;
              }

              
                

                