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

body {
    background-color: #f5f5f5;
    padding-top: 70px; /* Added padding to account for fixed header */
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #f0f0f0; /* Changed to light gray */
    color: #333; /* Changed to dark text */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Added to push items to opposite ends */
    padding: 0 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0; /* Added subtle border */
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.brand-icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    background-color: transparent; /* Removed blue background */
    border-radius: 50%;
    width: 55px; /* Increased from 40px to 55px */
    height: 55px; /* Increased from 40px to 55px */
    padding: 5px;
    border: none; /* Added to remove default button border */
    outline: none; /* Added to remove focus outline */
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Changed from blue shadow to subtle gray shadow */
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background:  url('../images/crypto-background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.btn-start {
    background-color: #FFD700; /* Changed to yellow */
    color: #333;
    border: none;
    padding: 15px 80px;
    font-size: 1.5rem; /* Increased from 1.2rem to 1.5rem */
    font-weight: 900; /* Increased from 700 to 900 for extra boldness */
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: buttonPulse 1.5s infinite; /* Added pulsation animation */
}

.btn-start:hover {
    background-color: #ffc400; /* Darker yellow on hover */
    transform: translateY(-3px);
}

.rocket {
    margin-right: 10px;
    font-size: 2rem;
}

/* Новая секция - Telegram бот */
.telegram-section {
    background-color: white;
    padding: 5rem 2rem;
    position: relative;
}

.telegram-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.telegram-text {
    max-width: 800px;
    background: linear-gradient(to right, #f9f9f9, white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid #0088cc; /* Telegram blue color */
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
}

.telegram-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0,136,204,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.telegram-text h2 {
    font-size: 2.1rem;
    color: #333;
    margin-bottom: 1.8rem;
    line-height: 1.4;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.telegram-text h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 70px;
    height: 3px;
    background-color: #0088cc;
    border-radius: 3px;
}

.devices {
    font-size: 1.3rem;
    color: #555;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    background-color: rgba(0,136,204,0.05);
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    border: 1px dashed rgba(0,136,204,0.3);
}

.device-item {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
}

.device-item:last-child {
    margin-right: 0;
}

.device-icon {
    font-size: 1.6rem;
    margin-right: 0.5rem;
    background-color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.divider {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    z-index: 10;
}

.image-container {
    width: 100%;
    height: 500px;
    background-color: transparent; /* Changed from dark blue to transparent */
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-style: italic;
}

/* Секция "Почему это стоит попробовать?" */
.benefits-section {
    background-color: #f5f5f5;
    padding: 5rem 2rem;
}

.benefits-container {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin-right: 25px;
    /* Здесь будут ваши иконки */
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-emoji {
    font-size: 1.7rem;
}

.benefit-text {
    color: #666;
    line-height: 1.5;
    font-size: 1.1rem;
}

/* Секция "Ты ничего не теряешь - только получаешь" */
.cta-section {
    position: relative;
    min-height: 500px;
    background:  url('../images/money-background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.money-bag {
    font-size: 2.5rem;
    margin-right: 10px;
    vertical-align: middle;
}

.cta-subtitle {
    font-size: 1.6rem;
    margin-bottom: 4rem;
    line-height: 1.5;
}

.finger-point {
    font-size: 1.8rem;
    margin-right: 10px;
    vertical-align: middle;
}

.arrow-container {
    margin-top: 10px;
    margin-bottom: 20px;
}

.arrow-down {
    font-size: 3rem;
    transform: rotate(40deg);
    display: inline-block;
    color: white;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: rotate(40deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(40deg) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: rotate(40deg) scale(1);
        opacity: 1;
    }
}

.cta-button {
    background-color: #FFD700; /* Changed to yellow */
    color: #333;
    border: none;
    padding: 15px 80px;
    font-size: 1.5rem; /* Increased from 1.2rem to 1.5rem */
    font-weight: 900; /* Increased from 700 to 900 for extra boldness */
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    animation: buttonPulse 1.5s infinite; /* Added pulsation animation */
}

.cta-button:hover {
    background-color: #ffc400; /* Darker yellow on hover */
    transform: translateY(-3px);
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

@media (max-width: 768px) {
    .brand {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .telegram-text h2 {
        font-size: 1.6rem;
    }
    
    .devices {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .device-item {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .device-icon {
        width: 35px;
        height: 35px;
        font-size: 1.4rem;
    }
    
    .image-container {
        height: 350px;
    }
    
    .benefits-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .benefit-item {
        padding: 15px 20px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .benefit-title {
        font-size: 1.3rem;
    }
    
    .benefit-text {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }
} 