:root {
    --bg-primary: #0a0a0c;
    --bg-secondary: #141416;
    --accent-primary: #e2b714;
    --accent-secondary: #00adb5;
    --text-primary: #f8f9fa;
    --text-secondary: #adb5bd;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    --nav-height: 80px;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: var(--bg-primary)
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary)
}

.section {
    padding: 100px 0
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center
}

.accent {
    color: var(--accent-primary)
}

.header {
    height: var(--nav-height);
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition)
}

.navbar {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700
}

.nav-links {
    display: flex;
    gap: 30px
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary)
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-primary)
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
    overflow: hidden;
    transition: var(--transition)
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, var(--bg-primary), transparent)
}

.hero-content {
    flex: 1;
    z-index: 2
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px
}

.hero-btns {
    display: flex;
    gap: 20px
}

.btn {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block
}

.btn-primary {
    background: var(--accent-primary);
    color: #000
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(226, 183, 20, 0.4)
}

.btn-secondary {
    border: 1px solid var(--glass-border);
    background: var(--glass-bg)
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1)
}

.hero-image {
    position: absolute;
    right: -100px;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    mask-image: linear-gradient(to left, black 60%, transparent);
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent)
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px
}

.blog-card {
    background: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition)
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow)
}

.blog-img {
    height: 250px;
    overflow: hidden
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.blog-card:hover .blog-img img {
    transform: scale(1.1)
}

.blog-info {
    padding: 30px
}

.category {
    color: var(--accent-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px
}

.blog-info h3 {
    margin-bottom: 15px;
    font-size: 1.4rem
}

.blog-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem
}

.read-more {
    color: var(--accent-primary);
    font-weight: 600
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px
}

.stats li {
    font-size: 0.9rem;
    color: var(--text-secondary)
}

.stats strong {
    display: block;
    font-size: 2rem;
    color: var(--accent-primary)
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 60px;
    border-radius: 20px;
    text-align: center
}

.glass-card i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 20px
}

.footer {
    background: var(--bg-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 20px
}

.footer-brand p {
    color: var(--text-secondary)
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 25px
}

.footer-links ul li {
    margin-bottom: 15px
}

.footer-links ul li a {
    color: var(--text-secondary)
}

.footer-links ul li a:hover {
    color: var(--accent-primary)
}

.social-icons {
    display: flex;
    gap: 20px
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--text-secondary)
}

.social-icons a:hover {
    color: var(--accent-primary)
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    color: var(--text-secondary);
    font-size: 0.9rem
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center
}

.modal:target {
    display: flex
}

.modal-content {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    max-width: 600px;
    text-align: center
}

.close-modal {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-primary);
    font-weight: 600
}

@media (max-width:992px) {
    .hero {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        padding-top: calc(var(--nav-height) + 20px)
    }

    .hero-image {
        display: block;
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        top: 0;
        order: -1;
        overflow: hidden
    }

    .hero-image::before,
    .hero-image::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 80px;
        z-index: 2
    }

    .hero-image::before {
        top: 0;
        background: linear-gradient(to bottom, var(--bg-primary), transparent)
    }

    .hero-image::after {
        bottom: 0;
        background: linear-gradient(to top, var(--bg-primary), transparent)
    }

    .hero-image img {
        opacity: 0.5;
        mask-image: none;
        -webkit-mask-image: none
    }

    .hero-content {
        padding: 40px 0;
        text-align: center
    }

    .hero p {
        line-height: 1.8;
        margin: 0 auto 30px;
        max-width: 100%
    }

    .hero-btns {
        display: flex;
        justify-content: center;
        gap: 15px;
        width: 100%
    }

    .secondary-hero {
        height: auto !important;
        min-height: auto;
        display: flex;
        flex-direction: column
    }

    .secondary-hero .hero-image {
        display: block;
        position: relative;
        width: 100%;
        height: 250px;
        right: 0;
        top: 0;
        order: -1
    }

    .secondary-hero .hero-content {
        order: 1;
        padding: 30px 20px;
        text-align: center
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        padding: 40px;
        border-bottom: 1px solid var(--glass-border);
        text-align: center;
        transition: var(--transition);
        z-index: 999
    }

    .nav-links.active {
        display: flex
    }

    .menu-btn {
        display: block;
        transition: var(--transition)
    }

    .menu-btn.active i::before {
        content: "\f00d"
    }

    .hero h1 {
        font-size: 2rem
    }

    .section-title {
        font-size: 1.8rem
    }

    .secondary-hero h1 {
        font-size: 1.8rem !important
    }

    .article-container {
        font-size: 1.15rem !important;
        padding: 0 15px !important;
        line-height: 1.8
    }

    .article-intro {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
        padding-left: 15px !important;
        line-height: 1.7
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}

.article-container {
    max-width: 800px;
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.15rem
}

.article-intro {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-primary);
    padding-left: 25px;
    font-style: italic
}

.secondary-hero .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.secondary-hero {
    height: 60vh
}

.secondary-hero h1 {
    font-size: 3.5rem
}

.contact-container,
.policy-container,
.disclosure-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-secondary);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid var(--glass-border)
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary)
}

.form-control {
    width: 100%;
    padding: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition)
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary)
}

.policy-container h2,
.disclosure-container h2 {
    margin: 40px 0 20px;
    font-size: 1.8rem
}

.policy-container p,
.disclosure-container p {
    margin-bottom: 20px;
    color: var(--text-secondary)
}

.nav-links a.active {
    color: var(--accent-primary);
    border-bottom: 2px solid var(--accent-primary)
}

@media (max-width:768px) {
    .secondary-hero h1 {
        font-size: 2.5rem
    }

    .contact-container,
    .policy-container,
    .disclosure-container {
        padding: 30px
    }
}