body {
    margin: 0;
    background-color: #0b0b0b;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #C5A572;
    letter-spacing: 0.5px;
}
p {
    font-size: 1.1rem;
    line-height: 1.8;
}
.hero {
    position: relative;
    height: 100vh;
    background: url('../images/bg.jpg') center/cover fixed no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 20px;
    animation: fadeIn 2s ease;
}
.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.btn.gold {
    background-color: #C5A572;
    color: #000;
}
.btn.dark {
    border: 2px solid #C5A572;
    color: #C5A572;
}
.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(197,165,114,0.3);
}
section {
    padding: 100px 20px;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
}
.features .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197,165,114,0.2);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(8px);
    transition: transform 0.4s ease;
}
.card:hover {
    transform: translateY(-8px);
    border-color: #C5A572;
}
.price {
    margin-top: 40px;
    font-size: 1.2rem;
    color: #e0d2b1;
    text-align: center;
}
.bot-section {
    background: linear-gradient(180deg, #0b0b0b, #141414);
}
.center {
    text-align: center;
}
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(197,165,114,0.2);
    color: #888;
    font-size: 0.9rem;
}
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
}
/* Подарок */
#gift {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #C5A572;
    color: #000;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    animation: float 2s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(197,165,114,0.5);
    text-align: center;
}
#gift:hover {
    transform: scale(1.3) rotate(-10deg);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #111;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.modal-content.modal-open {
    opacity: 1;
}
.modal-content.modal-close {
    opacity: 0;
}
.modal-content img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 15px;
}
.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}
/* Секция стратегий */
.strategies .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.strategy-card {
    position: relative;
    width: 300px;
    height: 214px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197,165,114,0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.strategy-card:hover {
    border-color: #C5A572;
}
.strategy-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: blur(5px);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}
.strategy-card:hover img {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.05);
}
.strategy-card::before {
    content: '?';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(197,165,114,0.5);
    font-family: 'Playfair Display', serif;
    transition: opacity 0.3s ease;
}
.strategy-card:hover::before {
    opacity: 0;
}
/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    section {
        padding: 60px 15px;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.2rem;
    }
    #gift {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .strategies .grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 15px;
        max-width: 300px;
    }
    .strategy-card {
        width: 300px;
        height: 214px;
        margin: 0 auto;
    }
    .strategy-card::before {
        font-size: 4rem;
    }
}
@media (max-width: 480px) {
    .modal-content {
        padding: 20px;
    }
    .modal-content h2 {
        font-size: 1.4rem;
    }
    .modal-content img {
        max-height: 200px;
        object-fit: contain;
    }
}
