:root {
    --gold: #D4AF37;
    --gold-light: #E6C567;
    --gold-dark: #B8860B;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --light-gray: #E5E5E5;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--light-gray);
    line-height: 1.7;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    margin-left: 10px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-image {
    width: 50px;
}

.logo-icon {
    font-size: 28px;
    color: var(--gold);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: var(--transition);
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--gold);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.language-selector {
    position: relative;
    margin-right: 25px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(212, 175, 55, 0.1);
}

.lang-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    overflow: hidden;
    display: none;
    z-index: 100;
}

.lang-option {
    padding: 10px 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-option:hover {
    background: rgba(212, 175, 55, 0.1);
}

.lang-option.active {
    background: rgba(212, 175, 55, 0.2);
}

.login-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(26, 26, 26, 0.2) 0%, rgba(10, 10, 10, 0.9) 70%);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero h2 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--light-gray);
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.primary-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.secondary-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 13px 35px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.secondary-btn:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
    z-index: -1;
}

/* Platforms Section */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 42px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-gray);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.platform-card {
    background: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
}

.platform-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--gold);
}

.platform-content {
    padding: 30px;
}

.platform-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.platform-content p {
    margin-bottom: 25px;
    color: #aaa;
}

.platform-link {
    display: flex;
    align-items: center;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.platform-link:hover {
    color: var(--gold-light);
}

.platform-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.platform-link:hover i {
    transform: translateX(5px);
}

/* About Section */
.about-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #ddd;
}

@media (max-width: 768px) {
    .about-image {
        margin-bottom: 30px;
    }

    .about-text p {
        font-size: 15px;
    }
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(10, 10, 10, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Projects Section */
.projects {
    position: relative;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(10, 10, 10, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--gold);
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.project-content p {
    margin-bottom: 25px;
    color: #aaa;
}

/* Features Section */
.features {
    position: relative;
    background: var(--dark-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--black);
    border-radius: 10px;
    padding: 40px 30px;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-content p {
    margin-bottom: 0;
    color: #aaa;
}

/* Download Section */
.download {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
    z-index: -1;
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.devices {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 60px 0;
}

.device {
    position: relative;
    width: 200px;
}

.device-image {
    width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.device-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.app-stores {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--light-gray);
    transition: var(--transition);
}

.store-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.store-icon {
    font-size: 28px;
    color: var(--gold);
}

.store-text {
    text-align: left;
}

.store-text span {
    font-size: 12px;
}

.store-text strong {
    font-size: 18px;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--dark-gray);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links a i {
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--black);
    color: var(--gold);
    transition: var(--transition);
    font-size: 18px;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #777;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 48px;
    }

    .about-content {
        flex-direction: column;
    }

    .devices {
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    nav ul {
        order: 3;
        /* justify-content: center; */
        margin-top: 15px;
        width: calc(100vw - 30px);
        overflow-x: auto;
    }

    nav ul::-webkit-scrollbar {
        display: none;
    }

    nav ul li {
        margin: 5px 10px;
        min-width: 78px;
    }

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

    .hero p {
        font-size: 16px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .app-stores {
        flex-direction: column;
        align-items: center;
    }

    .login-btn {
        padding: 8px 20px;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}

.company {
    position: relative;
    color: #FFFFFF;
    cursor: pointer;
}

.company:hover .company-options {
    max-height: 200px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.company-options {
    position: absolute;
    left: 0;
    max-height: 0;
    transition: all 0.3s;
    overflow: hidden;
    background: #1A1A1A;
}

.company-options .company-option {
    height: 45px;
    display: block;
    text-indent: 20px;
    line-height: 45px;
    width: 250px;
}

.benefits-list {
    list-style-type: none;
    margin: 30px 0;
}

.benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background-color: var(--gold);
    border-radius: 50%;
}

/*.content-block {*/
/*    margin-bottom: 50px;*/
/*}*/

/*.content-block h3 {*/
/*    font-size: 28px;*/
/*    margin-bottom: 20px;*/
/*    color: var(--gold-light);*/
/*}*/

/*.content-block p {*/
/*    margin-bottom: 20px;*/
/*    color: #aaa;*/
/*}*/
.content-block {
    position: relative;
}

.benefits-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefits-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.benefits-image:hover img {
    transform: scale(1.03);
}

.benefits-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background-color: var(--gold);
    border-radius: 50%;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: var(--dark-gray);
    margin: 5% auto;
    padding: 30px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    color: var(--light-gray);
    position: relative;
}

.modal-content h2 {
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
}

.policy-list {
    padding-left: 20px;
}

.policy-list li {
    margin-bottom: 25px;
}

.policy-list h3 {
    color: var(--gold-light);
    font-size: 18px;
    margin-bottom: 10px;
}

.policy-list p {
    color: #aaa;
    line-height: 1.6;
}

.close {
    color: var(--gold);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--gold-light);
}

@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        margin: 10% auto;
        padding: 20px;
    }
}