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

:root {
    --main-color: #ff92c2;
    --dark-color: #222;
    --light-color: #fff;
    --accent-color: #ff4081;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

body {
    background-color: #f5f5f5;
    color: var(--dark-color);
    line-height: 1.6;
    min-height: 100%;
}

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

/* Шапка сайта */
header {
    background-color: var(--main-color);
    color: var(--light-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light-color);
    font-size: 28px;
    font-weight: bold;
}

.logo .heart {
    display: inline-block;
    color: red;
    font-size: 24px;
    margin-left: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--dark-color);
}

/* Основное содержание */
main {
    padding: 0;
}

.hero {
    background-color: transparent;
    color: var(--dark-color);
    padding: 0;
    text-align: center;
    margin: 0;
    border-radius: 0;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero .container {
    max-width: 1200px;
    width: 100%;
    padding-top: 2cm;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero h1, .hero p, .hero .cta-button {
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    margin-right: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    max-width: none;
    margin: 0;
    line-height: 1.4;
}

.shop-button.pulse {
    background-color: red;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    animation: pulse 1.5s infinite;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.hero .shop-button {
    margin-top: 9cm;
    margin-left: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--main-color);
    color: var(--light-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 30px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero h1 {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .hero .shop-button {
        margin-left: 0;
    }
}

/* Секция товаров */
.products-section {
    padding-top: 60px;
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--dark-color);
}

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.product-card:hover:after {
    background: rgba(255, 255, 255, 0);
}

.product-card:before {
    display: none;
}

.product-card:hover:before {
    display: none;
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.product-info {
    padding: 12px;
    text-align: center;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.product-price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #e91e63;
    margin-bottom: 10px;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.buy-button {
    display: inline-block;
    background-color: var(--main-color);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: var(--accent-color);
}

/* Разделы страниц */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--main-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Страница VPN */
.vpn-info {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.vpn-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vpn-header h3 {
    color: var(--main-color);
    margin-bottom: 0;
    flex: 1;
}

.vpn-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
    transition: transform 0.3s;
}

.vpn-image:hover {
    transform: scale(1.05);
}

.vpn-info h3 {
    color: var(--main-color);
    margin-bottom: 15px;
}

.vpn-steps {
    margin-top: 20px;
}

.vpn-steps li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.vpn-steps li::before {
    content: '•';
    color: var(--main-color);
    font-size: 20px;
    position: absolute;
    left: 0;
}

/* О магазине */
.about-section {
    padding: 40px 0 60px;
}

.about-shop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.achievement-card {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 5px;
}

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

.store-graph, .store-image {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.store-graph h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.3rem;
    text-align: center;
}

.graph-image, .store-photo {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.graph-image {
    height: 220px;
}

.store-photo {
    height: 250px;
}

/* Подвал */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--main-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--main-color);
}

.footer-section ul li a i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.footer-section ul li a:hover i {
    transform: scale(1.2);
}

.fa-telegram {
    color: #0088cc;
}

.fa-vk {
    color: #4a76a8;
}

.fa-instagram {
    color: #e1306c;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 14px;
    color: #bbb;
}

/* Адаптивность */
@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

.products.four-columns {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 992px) {
    .products.four-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products.four-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .about-shop {
        grid-template-columns: 1fr;
    }
    
    .achievements {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .achievements {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 1.8rem;
    }
}

.hover-tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    z-index: 999;
    white-space: nowrap;
    display: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
} 