:root {
    --bg-color: #0d1117;
    --primary-color: #ffb800;
    --primary-gradient: linear-gradient(180deg, #ffd600 0%, #ff8a00 100%);
    --secondary-bg: #1a1f2e;
    --text-main: #ffffff;
    --text-muted: #a0a5b1;
    --border-color: #ffb800;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 184, 0, 0.3);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo .domain-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #000;
    padding: 10px 24px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 20px;
    border-radius: 8px;
}

/* Typography Utilities */
.highlight {
    color: var(--primary-color);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

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

/* Hero Section */
.hero {
    background-image: url('images/fortune-tiger_background_landscape2%201.png');
    background-size: cover;
    background-position: center;
    padding: 20px 0;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    min-height: 650px;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--text-main);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1;
    display: block;
}

.hero-desc {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-main);
    line-height: 1;
}
.tiger-wrap{
    background-image: url('images/fortune-tiger_coins 3.png');
    width: 700px;
    text-align: center;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
}
.hero .tiger{
    /*! position: absolute; */
    /*! bottom: -150px; */
    /*! left: 0; */
    /*! right: 0; */
    /*! margin: auto; */
    margin: auto;
}

/* Lorem Section */
.lorem-section {
    padding: 80px 0;
}

.lorem-box {
    border: 2px solid var(--border-color);
    padding: 50px;
    text-align: center;
    background: rgba(26, 31, 46, 0.5);
    border-radius: 40px;
    max-width: 900px;
    margin: 0 auto;
    background-image:url('images/oriental-chinese-new-year-background-chinese-traditional-template-japanese-pattern 1.png') ;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 27px;
    line-height: 1.2;
}

/* Section Dividers */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0 40px;
}

.section-divider hr {
    flex: 1;
    border: none;
    /*border-top: 1px solid rgba(255, 184, 0, 0.3);*/
    background-image: url('images/Vector 5.png');
    height: 4px;
    background-repeat: no-repeat;
    background-position: right center;
}
.section-divider hr.last{
    background-position: left center;
    background-image: url('images/Vector 6.png');
}

.divider-title {
    margin: 0 30px;
    font-size: 28px;
    color: var(--text-main);
    text-transform: uppercase;
    font-family: var(--font-heading);
}

/* Features Grid */
.features-section {
    padding: 20px 0 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item {
    /* background: var(--secondary-bg); */
    border: 1px solid rgba(255, 184, 0, 0.2);
    padding: 40px 20px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

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

.feature-item p {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    /* color: var(--primary-color); */
    margin-bottom: 10px;
}

/* How to Play Grid */
.how-to-play-section {
    padding: 20px 0 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.step-item {
    position: relative;
    border: 2px solid rgba(255, 184, 0, 0.2);
    padding: 10px;
}

.step-icon {
    /*width: 80px;
    height: 80px;*/
    /*background: var(--secondary-bg);*/
    /*border: 2px solid var(--primary-color);*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px;
}

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

.step-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.step-item p {
    font-size: 16px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
}

.faq-box {
    border: 1px solid rgba(255, 184, 0);
    border-radius: 8px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 184, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s, color 0.3s;
}

.faq-question:hover {
    background: rgba(255, 184, 0, 0.1);
}

.faq-question.active {
    color: var(--primary-color);
    border-bottom: 1px solid rgba(255, 184, 0, 0.2);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
    font-size: 20px;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Overview Section */
.overview-section {
    padding: 60px 0;
}

.overview-box {
    border: 2px solid rgba(255, 184, 0);
    padding: 60px;
    border-radius: 8px;
}

.overview-box h2,
.overview-box h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.overview-box h2:first-child,
.overview-box h3:first-child {
    margin-top: 0;
}

.overview-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 16px;
}

.compatibility-list {
    list-style: inside square;
    color: var(--primary-color);
    margin-top: 10px;
}

.compatibility-list li {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    font-size: 18px;
}

/* Conclusion Section */
.conclusion-section {
    padding: 40px 0 60px;
}

.conclusion-section .overview-box {
    padding: 40px 60px;
}

.conclusion-section .overview-box p {
    margin-bottom: 0;
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
}

/* How to Play Backlink Intro */
.how-to-play-intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
}

.how-to-play-intro a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Game Showcase Section */
.game-showcase-section {
    padding: 60px 0 100px;
}

.game-preview {
    margin: 40px auto;
    max-width: 900px;
}

.game-image-placeholder img {
    width: 100%;
    border-radius: 12px;
    /*border: 2px solid var(--primary-color);*/
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cta-bottom {
    margin-top: 50px;
    background: #51515136;
    padding: 40px;
}
.cta-bottom-wrap{
    max-width: 600px;
    
    padding: 10px;
    margin: auto;
    position: relative;
}
.img-left{
position: absolute;
  width: 200px;
  left: -13px;
  top: -15px;
}
.img-right{
    position: absolute;
  width: 150px;
  right: 42px;
  top: 0;
}
.cta-bottom a{
    width: 60%;
    padding: 25px 40px;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 184, 0, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 0 1 250px;
    max-width: 320px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-logo .logo-top {
    display: block;
    color: var(--primary-color);
}

.footer-logo .logo-bottom {
    display: block;
    color: var(--text-main);
}

.footer-text {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-muted);
}

.footer-col {
    flex: 0 1 120px;
}

.footer-col h4 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-badges-box {
    border: 1px solid rgba(255, 184, 0, 0.5);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex: 0 0 400px;
    margin-left: auto;
}

.footer-badges-box .badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 80px;
}

.footer-badges-box .badge-item img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-badges-box .badge-item span {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-copyright {
    padding-top: 30px;
    text-align: center;
}

.footer-copyright p {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive constraints for smaller screens */
@media (max-width: 992px) {
    .footer-badges-box {
        margin-left: 0;
        flex: 1 1 100%;
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid, .steps-grid {
        grid-template-columns: 1fr;
    }

    /* Header & Mobile Nav */
    .header-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--primary-color);
        font-size: 24px;
        cursor: pointer;
        outline: none;
        transition: color 0.3s;
    }
    
    .mobile-menu-toggle:hover {
        color: #fff;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(13, 17, 23, 0.98);
        border-bottom: 2px solid var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        gap: 20px;
        z-index: 99;
    }
    
    .nav-links.active {
        display: flex;
    }

    /* Hero Responsive */
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .hero-subtitle {
        font-size: 32px;
    }

    .hero-title {
        font-size: 28px;
    }
    
    .hero-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .tiger-wrap {
        position: relative;
        width: 100%;
        max-width: 320px;
        height: 250px;
        margin: 30px auto 0;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        left: auto;
        right: auto;
    }
    
    .hero .tiger {
        max-width: 160px;
        height: auto;
    }
    
    /* Lorem Box */
    .lorem-box {
        padding: 24px;
        font-size: 18px;
        border-radius: 20px;
        line-height: 1.4;
    }
    
    /* CTA Bottom */
    .img-left, .img-right {
        display: none;
    }
    
    .cta-bottom a {
        width: 100%;
        padding: 15px 30px;
        font-size: 16px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-col {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .footer-col h4 {
        margin-bottom: 10px;
    }
    
    .footer-badges-box {
        flex-direction: row;
        width: 100%;
        max-width: 450px;
        margin: 20px auto 0;
    }
}
