:root {
    --bg-color: #0a0a0c;
    --card-bg: #151518;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #facc15; /* Yellow */
    --accent-glow: rgba(250, 204, 21, 0.2);
    --border-color: rgba(250, 204, 21, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.glow-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 30%, var(--accent-glow), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

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

.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
}

/* Navigation */
.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-contact {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(250, 204, 21, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--text-secondary);
}

.hero .sub-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-btn {
    background-color: var(--accent-color);
    color: #000;
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.3);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(250, 204, 21, 0.4);
    background-color: #fde047;
}

.secondary-btn {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.secondary-btn:hover {
    background-color: rgba(250, 204, 21, 0.1);
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 800;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

.feature-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 24px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.feature-card-wide {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card-wide p {
    max-width: 800px;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(20, 20, 24, 0.8), transparent);
}

.why-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.why-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.action-box {
    background: rgba(250, 204, 21, 0.05);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.action-box h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #fff;
}

/* Hero Image */
.hero-image {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.panel-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(250, 204, 21, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.panel-img:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Extra Offers Section */
.extra-offers {
    padding: 80px 0 120px;
    position: relative;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.offer-card {
    background: linear-gradient(145deg, var(--card-bg), #1a1a1e);
    border: 1px solid rgba(250, 204, 21, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(250, 204, 21, 0.1);
    border-color: rgba(250, 204, 21, 0.3);
}

.offer-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    background: rgba(250, 204, 21, 0.05);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.offer-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.offer-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.offer-btn {
    display: inline-block;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.offer-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.offer-btn:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.offer-btn:hover i {
    transform: translateX(5px);
}

.admin-btn {
    background: rgba(41, 169, 234, 0.1); /* Telegram blue tint */
    border-color: rgba(41, 169, 234, 0.3);
    color: #29a9ea;
}

.admin-btn:hover {
    background: #29a9ea;
    color: #fff;
    border-color: #29a9ea;
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    .hero h1 { font-size: 2.8rem; }
    .hero h2 { font-size: 1.4rem; }
    .section-title { font-size: 2.2rem; }
    .action-box { padding: 30px 20px; }
}
