/* Reset default styles */
html{
    font-family: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: Arial, sans-serif; */
    line-height: 1.6;
}

/* Header styles */
.header {
    width: 100%;
    height: 80px;
    background: white;
    border-bottom: 1px solid #eaeaea;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    width: 100px;
    margin-right: 20px;
}

.nav {
    height: 100%;
}

.nav-list {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-list li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-list li a:hover {
    color: #C4A962;
}

/* Hero section styles */
main {
    display: flex;
    justify-content: center;
    background: white;
}

.hero-section {
    width: 100%;
    min-height: 600px;
    background-image: url('images/img1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 0 0 150px 150px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: 10%;
    padding: 60px 0;
    color: #fff;
}

.hero-title {
    display: flex;
    flex-direction: column;
}

.top-text {
    font-size: 72px;
    font-weight: 800;
    color: #C2B08A;
    line-height: 1;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 48px;
    color: #fff;
    margin: 15px 0 5px;
}

.year-text {
    font-size: 48px;
    color: #fff;
}

.update-badge {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0;
    text-transform: uppercase;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 540px;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-list {
        gap: 20px;
    }
    
    .nav-list li a {
        font-size: 14px;
    }

    main {
        padding: 30px 15px;
    }

    .hero-section {
        min-height: 500px;
        border-radius: 20px;
        margin-bottom:40px;
        display: none;
    }

    .hero-content {
        margin-left: 5%;
        margin-right: 5%;
        padding: 40px 0;
    }

    .top-text {
        font-size: 56px;
    }

    .subtitle, .year-text {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .container {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
    
    .header {
        height: auto;
        padding: 15px 0;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    main {
        padding: 20px 10px;
    }

    .hero-section {
        min-height: 400px;
        border-radius: 15px;
        display: none;
    }

    .hero-content {
        margin: 0 20px;
        text-align: center;
        padding: 30px 0;
    }

    .top-text {
        font-size: 42px;
    }

    .subtitle, .year-text {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
        margin: 0 auto;
    }
}



.disclaimer {
    width: 60%;
    background: white;
    padding: 80px 20px;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.disclaimer-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 40px;
    background: rgba(0, 0, 0);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255);
}

.disclaimer h2 {
    color: #C2B08A;
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
}

.disclaimer-text {
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.disclaimer-highlight {
    color: #C2B08A !important;
    font-size: 20px !important;
    font-weight: 600;
    text-align: center;
    margin-top: 30px !important;
}

.disclaimer-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.golden-cards {
    position: relative;
    transform: translateX(-50%);
    width: 300px;
    height: auto;
    margin-left: -100px;
}

.golden-disclaimer {
    position: relative;
    transform: translateX(50%);
    width: 300px;
    height: auto;
    margin-right: -100px;
}

.golden-cube {
    position: absolute;
    left: 15%;
    bottom: -50px;
    width: 150px;
    height: auto;
}

.dice {
    position: absolute;
    right: 15%;
    top: -50px;
    width: 150px;
    height: auto;
}

@media (max-width: 1400px) {
    .golden-cards {
        width: 250px;
        margin-left: -50px;
    }

    .golden-disclaimer {
        width: 250px;
        margin-right: -50px;
    }
}

@media (max-width: 1024px) {
    .golden-cards {
        width: 200px;
        margin-left: -25px;
    }

    .golden-disclaimer {
        width: 200px;
        margin-right: -25px;
    }

    .golden-cube, .dice {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .disclaimer {
        padding: 60px 20px;
        display: none;
    }

    .disclaimer-content {
        padding: 30px 20px;
    }

    .disclaimer h2 {
        font-size: 36px;
    }

    .golden-cards, .golden-disclaimer {
        display: none;
    }

    .golden-cube, .dice {
        width: 100px;
    }

    .disclaimer-text p {
        font-size: 14px;
    }

    .disclaimer-highlight {
        font-size: 18px !important;
    }
}

@media (max-width: 640px) {
    .disclaimer {
        padding: 40px 15px;
    }

    .disclaimer-content {
        padding: 20px 15px;
    }

    .disclaimer h2 {
        font-size: 28px;
    }

    .golden-cube, .dice {
        width: 80px;
    }

    .golden-cube {
        left: 5%;
    }

    .dice {
        right: 5%;
    }
} 

.space {
    background-color: black;
    width: 100%;
    height: auto;
    padding: 30px 0;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-text {
    color: #C2B08A;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        gap: 20px;
    }

    .feature-item {
        justify-content: center;
    }

    .feature-text {
        font-size: 16px;
    }

    .space {
        padding: 20px 0;
        display: none;
    }
}

@media (max-width: 480px) {
    .feature-text {
        font-size: 14px;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
    }
}

.best-casinos-section {
    padding: 80px 0;
    background: #fff;
}

.best-casinos-section .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title {
    color: #C2B08A;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.section-description {
    max-width: 1000px;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}

@media (max-width: 768px) {
    .best-casinos-section {
        padding: 60px 0;
    }

    .best-casinos-section{
        display: none;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 14px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .best-casinos-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
}







.winomania{
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: row;
}

.winomania-1 {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-radius: 20px;
    border-top:none;
    border-left:none;
    border-right:none;
    border-bottom:1px solid black;
    border-bottom-left-radius:0;
    border-bottom-right-radius:0;
    background-color: white;
    position: relative;
}

.logo-winomania{
    background-color: black;
    padding: 50px 20px 50px 20px;
    width: 30%;
    flex-shrink: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px 20px 20px 0;
    position: relative;
}

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

.options-winomania {
    background-color: #C2B08A;
    padding: 30px;
    flex-grow: 1;
    z-index: 1;
    border-radius: 0 20px 20px 0;
    position: relative;
    left: -18px;
}

.option-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.option-item:last-child {
    margin-bottom: 0;
}

.option-icon {
    width: 24px;
    height: 24px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}



.option-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.option-label {
    font-weight: bold;
    color: black;
    font-size: 16px;
}

.option-value {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .options-winomania {
        padding: 20px;
    }

    .option-item {
        margin-bottom: 15px;
    }

    .option-icon {
        width: 20px;
        height: 20px;
    }

    .option-label {
        font-size: 14px;
    }

    .option-value {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .options-winomania {
        padding: 15px;
        border-radius: 0;
    }

    .option-item {
        margin-bottom: 12px;
    }
}

.rating-winomania {
    background-color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 20%;
    z-index: 1;
}

.rating-score {
    font-size: 48px;
    font-weight: bold;
    color: #C4A962;
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 5px;
    margin: 5px 0;
}

.rating-votes {
    font-size: 14px;
    color: #333;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .rating-winomania {
        width: 25%;
        padding: 20px;
    }

    .rating-score {
        font-size: 42px;
    }

}

@media (max-width: 768px) {
    .rating-winomania {
        width: 100%;
        padding: 15px;
    }

    .rating-score {
        font-size: 36px;
    }


    .rating-votes {
        font-size: 13px;
    }
}

.claim-winomania {
    background-color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 25%;
    z-index: 1;
    border-radius: 0 20px 20px 0;
}

.bonus-text {
    text-align: center;
}

.bonus-main {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.bonus-extra {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.claim-button {
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 200px;
}

.claim-button:hover {
    background-color: #cc0000;
}

@media (max-width: 1024px) {
    .claim-winomania {
        width: 30%;
        padding: 20px;
    }

    .bonus-main {
        font-size: 22px;
    }

    .bonus-extra {
        font-size: 18px;
    }

    .claim-button {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .claim-winomania {
        width: 100%;
        padding: 15px;
    }

    .bonus-main {
        font-size: 20px;
    }

    .bonus-extra {
        font-size: 16px;
    }

    .claim-button {
        padding: 10px 25px;
        font-size: 14px;
        max-width: 180px;
    }
}



/* Add media queries for responsive design */
@media (max-width: 1024px) {
    .winomania {
        width: 90%;
    }

    .winomania-1 {
        flex-direction: column;
    }

    .logo-winomania {
        width: 111.2%;
        padding: 30px 20px;
        border-radius: 20px 20px 0 0;
    }

    .options-winomania {
        width: 111.2%;
        left: 0;
        border-radius: 0 0 20px 20px;
    }

    .rating-winomania {
        width: 100%;
        border-radius: 0;
    }

    .claim-winomania {
        width: 100%;
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 768px) {
    .winomania {
        width: 95%;
    }

    .logo-winomania {
        padding: 20px;
        width: 105.2%;
    }

    .logo-winomania img {
        max-width: 200px;
    }

    .options-winomania {
        padding: 20px;
        width: 105.2%;
    }

    .option-item {
        gap: 10px;
    }

    .option-icon {
        width: 20px;
        height: 20px;
    }

    .option-label {
        font-size: 14px;
    }

    .option-value {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .winomania {
        width: 100%;
    }

    .logo-winomania {
        padding: 15px;
        width: 100%;
    }

    .logo-winomania img {
        max-width: 180px;
    }

    .options-winomania {
        padding: 15px;
        width: 100%;
    }

    .option-item {
        margin-bottom: 10px;
    }

    .rating-winomania {
        padding: 15px;
    }

    .claim-winomania {
        padding: 15px;
    }

    .bonus-text {
        font-size: 18px;
    }

    .claim-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

.casino-details-section {
    width: 100%;
    margin-top: -1px;
    background: white;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.toggle-button1, .toggle-button2, .toggle-button3 {
    width: 100%;
    padding: 15px;
    background: black;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: white;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.toggle-button1:hover, .toggle-button2:hover, .toggle-button3:hover {
    background-color: #333;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-button1.collapsed .toggle-icon, .toggle-button2.collapsed .toggle-icon, .toggle-button3.collapsed .toggle-icon {
    transform: rotate(180deg);
}

.details-content1, .details-content2, .details-content3 {
    padding: 30px;
    opacity: 1;
    transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease;
    overflow: hidden;
    display: flex;
    gap: 30px;
    background: white;
}

.details-content1.collapsed, .details-content2.collapsed, .details-content3.collapsed {
    max-height: 0;
    opacity: 0;
    padding: 0 30px;
}

.casino-description {
    flex: 0 0 30%;
    line-height: 1.6;
    color: #333;
    padding-right: 30px;
    border-right: 1px solid #e0e0e0;
}

.details-columns {
    flex: 0 0 70%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.details-columns h3 {
    color: #C2B08A;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #C2B08A;
}

.key-features ul,
.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.key-features li,
.pros li,
.cons li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.6;
}

.key-features li::before {
    position: absolute;
    left: 0;
    color: #C2B08A;
}

.star-icon, .plus-icon, .warning-icon {
    padding-right:10px;
}

.pros li::before {
    position: absolute;
    left: 0;
    color: #28a745;
}

.cons li::before {
    position: absolute;
    left: 0;
    color: #dc3545;
}
.final-verdict{
    margin-right:20px;
}

@media (max-width: 1024px) {
    .details-content1, .details-content2, .details-content3 {
        flex-direction: column;
    }

    .casino-description {
        flex: none;
        width: 100%;
        margin-bottom: 30px;
        padding-right: 0;
        padding-bottom: 30px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .details-columns {
        flex: none;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .final-verdict {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .details-content1, .details-content2, .details-content3 {
        padding: 20px;
    }

    .casino-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .details-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .details-columns h3 {
        margin-bottom: 15px;
    }

    .key-features ul,
    .pros ul,
    .cons ul {
        margin-bottom: 15px;
    }

    .final-verdict {
        margin-top: 20px;
    }

    .details-content1.collapsed,
    .details-content2.collapsed,
    .details-content3.collapsed {
        display: none;
    }
}

@media (max-width: 480px) {
    .details-content1, .details-content2, .details-content3 {
        padding: 15px;
    }

    .casino-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .details-columns {
        gap: 15px;
    }

    .key-features li,
    .pros li,
    .cons li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .final-verdict p {
        font-size: 13px;
    }

    .details-content1.collapsed,
    .details-content2.collapsed,
    .details-content3.collapsed {
        display: none;
    }
}

.winomania-container {
    border: 1px solid black;
    border-radius: 20px;
    margin:0 auto;
    width:80%;
    margin-bottom: 5%;
    margin-top: 20px;
}

.first{
    position: absolute;
    left: -36px;
    border: 5px solid white;
    border-radius: 50%;
    background-color: white;
    
}











.comparison {
    background-color: #C2B08A;
    margin: 60px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.comparison h2 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.comparison-text {
    flex: 1;
    max-width: 600px;
    padding-bottom: 20px;
}

.comparison-text p {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.comparison-text p:last-child {
    margin-bottom: 0;
}

.casino-name {
    font-weight: 700;
    color: #fff;
}

.comparison-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 60%;
    margin-top: -400px;
    
}

.comparison-image img {
    max-width:100%;
    height: auto;
}

@media (max-width: 1024px) {
    .comparison-content {
        padding: 0 30px;
        flex-direction: column;
    }

    .comparison h2 {
        font-size: 28px;
        text-align: center;
    }

    .comparison-text p {
        font-size: 15px;
        text-align: center;
    }

    .comparison-image, .comparison-image img {
        display: none;

    }
}

@media (max-width: 768px) {
    .comparison {
        padding: 40px 0;
    }

    .comparison h2 {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 30px;
    }

    .comparison-content {
        flex-direction: column;
        gap: 30px;
    }

    .comparison-text {
        text-align: center;
    }

    .comparison-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .comparison {
        padding: 30px 0;
    }

    .comparison h2 {
        font-size: 20px;
        margin-bottom: 25px;
        padding: 0 20px;
    }

    .comparison-content {
        padding: 0 20px;
        gap: 20px;
    }

    .comparison-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .comparison-image {
        max-width: 300px;
    }
}

.faq {
    background-color: #000;
    padding: 0 0;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: start;
}

.faq-image-container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

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

.faq-container {
    width: 50%;
    padding-right: 20px;
    padding-top:100px;
}

.faq-item{
    margin-bottom: 15px;;
}

.faq h2 {
    color: #C2B08A;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    padding: 0 20px;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
}

.faq-item.active {
    background: #C2B08A;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.faq-item.active .faq-question span {
    color: #fff;
}

.toggle-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 30px 25px;
    background: #C2B08A;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .faq {
        flex-direction: column;
        align-items: left;
    }

    .faq-image-container {
        width: 100%;
        max-width: 500px;
        margin-bottom: 20px;
    }

    .faq-container {
        width: 100%;
    }

    .faq h2 {
        font-size: 28px;
        text-align: center;
    }
}

@media (max-width: 768px) {
   
    .faq h2 {
        font-size: 24px;
        margin-bottom: 30px;
        text-align: center;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 25px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    
    .faq h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 20px 15px;
    }

    .faq-answer p {
        font-size: 13px;
    }
    .faq-item{
        margin-left:20px;
    }
}





.guide {
    background-color: #fff;
    padding: 60px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-text {
    width: 70%;
    padding-right: 40px;
    padding-left: 40px;
}

.guide-title {
    color: #C2B08A;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.guide-description {
    color: #333;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.guide-list {
    list-style: none;
    padding: 0;
}

.guide-list-item {
    margin-bottom: 20px;
    font-size: 12px;
}

.guide-list-title {
    color: #C2B08A;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
    padding-right: 5px;
}

.guide-list-description {
    color: #333;
    line-height: 1.6;
}

.guide-img {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top:100px;
}

.guide-img img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .guide {
        flex-direction: column;
        padding: 40px 20px;
    }

    .guide-text, .guide-img {
        width: 100%;
        padding-right: 0;
    }

    .guide-img {
        margin-top: 40px;
    }

    .guide-title {
        font-size: 28px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .guide {
        padding: 30px 20px;
    }

    .guide-title {
        font-size: 24px;
    }

    .guide-description, .guide-list-description {
        font-size: 14px;
    }
}






.footer {
    background-color: #000;
    padding: 20px 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: 
        "left nav"
        "left right";
    gap: 20px;
    align-items: start;
}

.footer-left {
    grid-area: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-right:100px;
}

.footer-logo {
    width: 120px;
    height: auto;
}

.footer-copyright {
    color: #fff;
    font-size: 12px;
    opacity: 0.7;
}

.footer-nav {
    grid-area: nav;
    display: flex;
    align-items: left;
    gap: 20px;
    justify-content: flex-start;
}

.footer-nav-item {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    padding: 0 10px;
}

.footer-nav-item:not(:last-child)::after {
    content: "♦";
    position: absolute;
    right: -10px;
    color: #C2B08A;
}

.footer-right {
    grid-area: right;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

.compliance-badges {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-right:100px;
    margin-left:12px;
}

.compliance-badge {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.compliance-badge:hover {
    opacity: 1;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 15px;
}

.age-badge {
    background: #C2B08A;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "left"
            "nav"
            "right";
        text-align: center;
        gap: 30px;
        padding: 20px;
    }

    .footer-left {
        align-items: center;
        margin: 0;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-nav-item {
        font-size: 14px;
    }

    .footer-nav-item:not(:last-child)::after {
        display: none;
    }

    .footer-right {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .compliance-badges {
        margin: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .compliance-badge {
        height: 25px;
    }

    .age-restriction {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-links {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 15px;
        gap: 25px;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-nav-item {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .compliance-badge {
        height: 20px;
    }

    .age-badge {
        font-size: 12px;
        padding: 4px 8px;
    }

    .footer-link {
        font-size: 11px;
    }
}

.black-bold-text{
    color:black;
    font-weight: bold;
}

.privacy-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.privacy-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.privacy-title {
    color: #C2B08A;
    font-size: 32px;
    margin-bottom: 30px;
}
.privacy-section {
    margin-bottom: 30px;
}
.privacy-section h2 {
    color: #C2B08A;
    font-size: 24px;
    margin-bottom: 15px;
}
.privacy-section p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}
.privacy-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}
.privacy-section li {
    color: #333;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .privacy-container {
        margin: 20px auto;
    }
    .privacy-content {
        padding: 20px;
    }
    .privacy-title {
        font-size: 24px;
    }
    .privacy-section h2 {
        font-size: 20px;
    }
}

.terms-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.terms-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.terms-title {
    color: #C2B08A;
    font-size: 32px;
    margin-bottom: 30px;
}
.terms-section {
    margin-bottom: 30px;
}
.terms-section h2 {
    color: #C2B08A;
    font-size: 24px;
    margin-bottom: 15px;
}
.terms-section p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}
.terms-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}
.terms-section li {
    color: #333;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .terms-container {
        margin: 20px auto;
    }
    .terms-content {
        padding: 20px;
    }
    .terms-title {
        font-size: 24px;
    }
    .terms-section h2 {
        font-size: 20px;
    }
}

