/* =====================================================
   CARDGIFT - INDEX PAGE STYLES
   Мобильная версия (480px по центру)
   ===================================================== */

/* ===== ОСНОВНОЙ КОНТЕЙНЕР ===== */
.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 15px;
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

/* ===== HEADER ===== */
.header {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px 15px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #FFD700;
    border-radius: 20px;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.logo-icon {
    font-size: 2.5em;
}

.logo-text {
    font-size: 2.2em;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.tagline {
    font-size: 1.1em;
    color: #FFD700;
    line-height: 1.4;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 1.6em;
    color: #FFF;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1em;
    color: #CCC;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* ===== КНОПКИ ===== */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border-color: #FFD700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
}

.btn-large {
    padding: 18px 24px;
    font-size: 1.15em;
}

/* ===== FEATURES ===== */
.features {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.4em;
    color: #FFF;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.feature-card:hover {
    border-color: #FFD700;
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.feature-title {
    color: #FFD700;
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 8px;
}

.feature-desc {
    color: #CCC;
    font-size: 0.95em;
    line-height: 1.4;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    margin-bottom: 30px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.step h3 {
    color: #FFD700;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.step p {
    color: #CCC;
    font-size: 0.95em;
}

/* ===== STATS ===== */
.stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    padding: 20px 10px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8em;
    color: #FFD700;
    font-weight: bold;
}

.stat-label {
    color: #CCC;
    font-size: 0.85em;
    margin-top: 5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    padding: 30px 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-section h2 {
    color: #FFF;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.cta-section p {
    color: #CCC;
    margin-bottom: 20px;
    font-size: 0.95em;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
}

.footer-content {
    margin-bottom: 20px;
}

.footer-brand {
    margin-bottom: 15px;
}

.logo-small {
    font-size: 1.3em;
    color: #FFD700;
    font-weight: bold;
}

.footer-brand p {
    color: #888;
    font-size: 0.9em;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #CCC;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-social span {
    color: #888;
    font-size: 0.9em;
}

.social-link {
    font-size: 1.3em;
    text-decoration: none;
}

.footer-bottom {
    color: #666;
    font-size: 0.85em;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 3px 0;
}

/* ===== PARTICLES ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px);
        opacity: 0.6;
    }
}
