﻿:root {
    --primary-color: #FFE08C;
    --success-color: #008000;
    --accent-color: #B22222;
    --black-color: #000000;
    --white-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    <!-- font-family: 'Montserrat', sans-serif; -->
    <!-- background-image: url('images/bg.png'); -->
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: var(--black-color);
    color: var(--white-color);
    line-height: 1.6;
    min-height: 100vh;
}

.decorative-line {
    position: relative;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 20px 0;
}

.decorative-line::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 14px;
    background-color: var(--black-color);
    padding: 0 10px;
}


.fw-bold {
    font-weight: 700 !important;
}

.bg-dark {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
}

.hero {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem  2rem 0 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(90deg, #918973 00%, #FFE08C 50%, #918973 100%);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.text-primary {
    color: var(--primary-color);
}
.text-white {
    color: var(--white-color);
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.subtitle {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.bg-gradient {
    background: linear-gradient(90deg, #504b3f 00%, #5e5233 50%, #504b3f 100%);
    padding: calc(1rem - 2px) calc(2rem - 2px);
    z-index: 1;
}

.border-gradient {
    position: relative;
    border: none;
    color: var(--primary-color);
    background: linear-gradient(90deg, #918973 00%, #FFE08C 50%, #918973 100%);
    padding: calc(1rem - 2px) calc(2rem - 2px);
    z-index: 1;
}


.border-gradient::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: var(--black-color);
    border-radius: 3px;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.countdown-section {
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.countdown-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status-closed {
    color: var(--accent-color);
    font-weight: bold;
}
.status-opened {
    color: var(--success-color);
    font-weight: bold;
}

.fs-15{
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.feature-card {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid var(--primary-color);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

.screenshots {
    padding: 2rem 2rem 4rem 2rem;
    text-align: center;
}

.screenshots h2 {
    margin-bottom: 2rem;
}

.screenshot-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* padding: 0 1rem; */
}

.screenshot-slider {
    position: relative;
    width: 100%;
    padding: 1rem 0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.screenshot-slider::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
}

.screenshot-item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.screenshot-item.prev {
    transform: translateX(-100%);
}

.screenshot-item.next {
    transform: translateX(100%);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
}