* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Top Header Bar */
.top-header {
    background-color: #ff67ac;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.heart-logo {
    font-size: 1.5rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.logo-text {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.login-btn, .register-btn {
    background-color: #ff67ac;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
    text-decoration: none;
    font-weight: bold;
}

.login-btn:hover, .register-btn:hover {
    background-color: #ff4d9e;
}

.login-btn::before {
    content: "→";
    margin-right: 5px;
}

.register-btn::before {
    content: "👤";
    margin-right: 5px;
}

header {
    background-color: #ff67ac;
    position: fixed;
    width: 100%;
    top: 50px;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::after {
    content: '❤';
    color: #ff0000;
    animation: pulse 1.5s ease infinite;
}

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

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

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff0000;
}

main {
    margin-top: 50px;
}

/* Общие стили для hero секций */
.hero, .about-hero, .products-hero, .vpn-hero, .contact-hero {
    background: url('images/header.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.logo-section {
    margin-bottom: 2rem;
}

.main-logo {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    text-shadow: 3px 3px 0px #ff67ac;
    line-height: 0.9;
    margin: 0;
    letter-spacing: 2px;
}

.info-panel {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.warning-text {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.warning-icon {
    font-size: 1.2rem;
}

.telegram-section, .job-section, .calculator-section, .tor-section {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.telegram-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    width: 100%;
}

.icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.clickable-link {
    color: #ff67ac;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dotted #ff67ac;
    transition: color 0.3s;
}

.clickable-link:hover {
    color: #ff4d9e;
    border-bottom: 1px solid #ff4d9e;
}

.arrow {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero h1, .about-hero h1, .products-hero h1, .vpn-hero h1, .contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Стили для главной страницы */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff67ac;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #ff4d9e;
}

.pulse-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    font-weight: bold;
    animation: buttonPulse 2s infinite;
}

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

.pulse-button:hover {
    background-color: #cc0000;
    animation: none;
}

.pulse-button-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 2rem;
    font-weight: bold;
    font-size: 1.5rem;
    animation: buttonPulseLarge 2s infinite;
}

@keyframes buttonPulseLarge {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.pulse-button-large:hover {
    background-color: #cc0000;
    animation: none;
}

.featured-products {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff67ac, #ff4d9e, #ff67ac);
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 103, 172, 0.1), transparent);
    transition: left 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 103, 172, 0.3);
    border-color: #ff67ac;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: #ff67ac;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-description {
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.product-description p {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.product-description ul {
    list-style: none;
    color: #888;
    font-size: 0.9rem;
}

.product-description ul li {
    margin-bottom: 0.3rem;
    padding-left: 1.2rem;
    position: relative;
}

.product-description ul li::before {
    content: '❄';
    position: absolute;
    left: 0;
    color: #ff67ac;
}

.price {
    padding: 0 1rem;
    color: #ff67ac;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: right;
}

/* Стили для страницы "О нас" */
.about-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-text h2 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-text ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.about-images img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Стили для страницы товаров */
.products-catalog {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.filter-btn.active {
    background: #ff67ac;
    color: white;
}

.buy-btn {
    background: linear-gradient(135deg, #ff67ac, #ff4d9e);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 103, 172, 0.3);
}

.buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.buy-btn:hover::before {
    left: 100%;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #ff4d9e, #ff67ac);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 172, 0.4);
}

/* Стили для страницы VPN */
.vpn-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.vpn-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.vpn-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.vpn-section h3 {
    color: #ff67ac;
    margin: 1.5rem 0 1rem;
}

.vpn-section ul, .vpn-section ol {
    margin-left: 1rem;
}

.vpn-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.vpn-description {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.vpn-description p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Стили для страницы контактов */
.contact-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-details {
    margin: 1.5rem 0;
}

.contact-details p {
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    padding: 0.5rem 1rem;
    background: #ff67ac;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background: #ff4d9e;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #ff67ac;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #ff4d9e;
}

.about-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #e8f4f8 100%);
    padding: 4rem 5%;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff67ac, #ff4d9e, #ff67ac);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
    position: relative;
}

.section-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.section-decoration {
    font-size: 1.5rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.about-text h2 {
    color: #ff67ac;
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    text-align: center;
    font-style: italic;
}

.unique-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #ff67ac;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-content h4 {
    color: #ff67ac;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff67ac;
    margin-bottom: 0.5rem;
}

.achievement-text {
    color: #666;
    font-size: 1rem;
}

.reputation {
    margin-top: 3rem;
}

.reputation h3 {
    color: #ff67ac;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.review {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.review p {
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.reviewer {
    color: #ff67ac;
    font-weight: bold;
}

.about-images {
    display: grid;
    gap: 1.5rem;
}

.about-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-images img:hover {
    transform: scale(1.02);
}

/* Стили для страницы about.html */
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    font-style: italic;
}

.story-section, .mission-section, .values-section {
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    margin: 2rem 0;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff67ac, #ff4d9e);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #ff67ac;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #ff67ac;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff67ac;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.mission-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 4px solid #ff67ac;
}

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

.mission-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.mission-card h4 {
    color: #ff67ac;
    margin-bottom: 0.5rem;
}

.mission-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-left: 4px solid #ff67ac;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.value-item h4 {
    color: #ff67ac;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Стили для страницы contact.html */
.contact-header {
    margin-bottom: 2rem;
}

.contact-intro {
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    transition: transform 0.3s;
    border-left: 4px solid #ff67ac;
}

.contact-method:hover {
    transform: translateY(-3px);
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-content h4 {
    color: #ff67ac;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.method-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #ff67ac, #ff4d9e);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 103, 172, 0.3);
}

.social-icon:hover {
    background: linear-gradient(135deg, #ff4d9e, #ff67ac);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 172, 0.4);
}

.social-emoji {
    font-size: 1.2rem;
}

.social-text {
    font-size: 0.95rem;
}

.working-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.working-hours h3 {
    color: #ff67ac;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: bold;
    color: #333;
}

.time {
    color: #ff67ac;
    font-weight: bold;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    color: #ff67ac;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-style: italic;
}

.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ff67ac;
    border-color: #ff67ac;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.privacy-link {
    color: #ff67ac;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #ff67ac, #ff4d9e);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(255, 103, 172, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ff4d9e, #ff67ac);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 172, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Стили для страницы products.html */
.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: #ff67ac;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff67ac, #ff4d9e);
    color: white;
    border-color: #ff67ac;
}

.filter-icon {
    font-size: 1.2rem;
}

.filter-text {
    font-size: 0.95rem;
}

.sort-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-section label {
    font-weight: 500;
    color: #333;
}

.sort-select {
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 0.95rem;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    z-index: 2;
}

.product-badge:not(.new):not(.premium):not(.limited) {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.product-badge.new {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.product-badge.premium {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
}

.product-badge.limited {
    background: linear-gradient(135deg, #a55eea, #26de81);
}

.product-info {
    padding: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0.5rem 0;
}

.stars {
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.8rem;
    color: #666;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.current-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff67ac;
}

.discount {
    background: #ff6b6b;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.catalog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-btn {
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.page-btn:hover:not(:disabled) {
    background: #ff67ac;
    color: white;
    border-color: #ff67ac;
}

.page-btn.active {
    background: #ff67ac;
    color: white;
    border-color: #ff67ac;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.products-count {
    color: #666;
    font-size: 0.9rem;
}

/* Стили для страницы vpn.html */
.security-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
}

.security-intro h2 {
    color: #ff67ac;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.security-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 4px solid #ff67ac;
}

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

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: #ff67ac;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.tor-features {
    margin: 2rem 0;
}

.tor-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    transition: transform 0.3s;
    border-left: 4px solid #ff67ac;
}

.tor-feature:hover {
    transform: translateY(-3px);
}

.tor-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.tor-content h4 {
    color: #ff67ac;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.tor-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.setup-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    transition: transform 0.3s;
    border-left: 4px solid #ff67ac;
}

.step:hover {
    transform: translateY(-3px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff67ac, #ff4d9e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ff67ac;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.security-tips {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.security-tips h2 {
    text-align: center;
    color: #ff67ac;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 4px solid #ff67ac;
}

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

.tip-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tip-card h4 {
    color: #ff67ac;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tip-card p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Main Navigation Bar */
.main-nav {
    background-color: #ff67ac;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    margin-top: 0;
    flex-wrap: wrap;
    gap: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-icon {
    font-size: 1.1rem;
}

.nav-text {
    white-space: nowrap;
}

.nav-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

.arrow-down {
    font-size: 0.8rem;
}

/* Footer Section */
.footer-section {
    background-color: #87ceeb;
    padding: 2rem 0;
    margin-top: 0;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.city-btn, .district-btn {
    background-color: #ff67ac;
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s, transform 0.2s;
    min-width: 200px;
    justify-content: center;
}

.city-btn:hover, .district-btn:hover {
    background-color: #ff4d9e;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-text {
    font-size: 1rem;
}

.btn-arrow {
    font-size: 1.2rem;
    margin-left: 5px;
}

/* Loading animation */
.loading {
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Стили для дополнительных ссылок */
.additional-links, .additional-resources, .additional-contacts, .network-section, .secure-domains {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.additional-links h4, .additional-resources h4, .additional-contacts h3, .network-section h2, .secure-domains h2 {
    color: #ff67ac;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.link-grid, .resource-links, .contact-links, .network-links, .domain-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.resource-link, .contact-link, .network-link, .domain-link {
    display: block;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #ff67ac, #ff4d9e);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 103, 172, 0.3);
}

.resource-link:hover, .contact-link:hover, .network-link:hover, .domain-link:hover {
    background: linear-gradient(135deg, #ff4d9e, #ff67ac);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 172, 0.4);
}

/* Focus indicators for accessibility */
button:focus, 
a:focus, 
.nav-item:focus, 
.clickable-link:focus {
    outline: 2px solid #ff67ac !important;
    outline-offset: 2px !important;
}

/* Smooth transitions for all interactive elements */
.nav-item, 
.clickable-link, 
.city-btn, 
.district-btn, 
.login-btn, 
.register-btn {
    transition: all 0.2s ease;
}

/* Hover effects for better UX */
.nav-item:hover, 
.clickable-link:hover {
    transform: translateY(-1px);
}

footer {
    background-color: #ff67ac;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .top-header {
        padding: 0 10px;
    }

    .header-buttons {
        gap: 5px;
    }

    .login-btn, .register-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .main-logo {
        font-size: 2.5rem;
    }

    .info-panel {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .telegram-section, .job-section, .calculator-section, .tor-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .telegram-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .nav-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .nav-divider {
        display: none;
    }

    .footer-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .city-btn, .district-btn {
        min-width: auto;
        width: 100%;
        padding: 1.2rem 2rem;
    }

    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0 1rem;
    }

    .hero h1, .about-hero h1, .products-hero h1, .vpn-hero h1, .contact-hero h1 {
        font-size: 2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
} 