* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
}

.logo img {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-menu a.active {
    color: #4A90E2;
}

.nav-menu a:hover {
    color: #4A90E2;
}

.login-btn {
    color: #4A90E2 !important;
}

/* Main */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.hero-card h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn.primary {
    background: #333;
    color: white;
    border: 2px solid #333;
}

.btn.primary:hover {
    background: #555;
    transform: translateY(-2px);
}

.btn.secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    margin: 2rem auto;
    display: block;
}

.btn.secondary:hover {
    background: #333;
    color: white;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #e9ecef;
}

.info-card .icon {
    font-size: 1.5rem;
}

.info-card .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.info-card.stores {
    justify-content: space-between;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #333;
}

.info-card p {
    color: #666;
    font-size: 0.9rem;
}

.link-card {
    background: #4a5568;
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
}

.link-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tor-btn {
    background: white;
    color: #333;
    border: none;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}

.tor-btn:hover {
    background: #f0f0f0;
}

/* About Section */
.about-section {
    text-align: center;
    margin: 6rem 0;
    position: relative;
}

.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.chart-icon {
    position: absolute;
    left: 10%;
    top: 20%;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.diamonds {
    position: absolute;
    right: 15%;
    top: 30%;
    font-size: 2rem;
    opacity: 0.1;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    text-transform: uppercase;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

.about-text strong {
    color: #4A90E2;
    font-weight: 600;
}

/* Platforms Section */
.platforms-section {
    margin: 6rem 0;
    text-align: center;
    position: relative;
}

.wave-decoration {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 25 0 50 10 T 100 10 V 20 H 0 Z' fill='%23f8f9fa'/%3E%3C/svg%3E") repeat-x;
    background-size: 100px 20px;
}

.platforms-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    text-transform: uppercase;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.platform-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.platform-card p {
    color: #666;
    line-height: 1.6;
    text-align: left;
}

/* Access Section */
.access-section {
    margin: 6rem 0;
    text-align: center;
}

.access-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    text-transform: uppercase;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #e9ecef;
}

.accordion-icon {
    font-weight: 300;
    font-size: 1.2rem;
}

.accordion-content {
    padding: 1.5rem 2rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
}

/* Reviews Section */
.reviews-section {
    margin: 6rem 0;
    text-align: center;
    position: relative;
}

.wave-decoration.bottom {
    bottom: -50px;
    top: auto;
    transform: rotate(180deg);
}

.reviews-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    text-transform: uppercase;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.reviewer-info h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.2rem;
}

.reviewer-info p {
    color: #666;
    font-size: 0.9rem;
}

.review-text {
    color: #666;
    line-height: 1.6;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #4A90E2;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links span {
    cursor: pointer;
    transition: transform 0.3s;
}

.social-links span:hover {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-card {
        padding: 2rem;
    }
    
    .hero-card h1 {
        font-size: 2rem;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .main {
        padding: 1rem;
    }
    
    .accordion-header {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-content {
        padding: 1rem;
    }
}

/* Mirrors Section */
.mirrors-section {
    margin: 6rem 0;
    text-align: center;
    background: #f8f9fa;
    padding: 4rem 2rem;
    border-radius: 20px;
}

.mirrors-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    text-transform: uppercase;
}

.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mirror-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}

.mirror-card:hover {
    transform: translateY(-5px);
}

.mirror-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.mirror-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mirror-link {
    display: block;
    padding: 0.8rem 1.2rem;
    background: #4A90E2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
}

.mirror-link:hover {
    background: #357ABD;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .mirrors-section {
        padding: 2rem 1rem;
    }
    
    .mirrors-grid {
        grid-template-columns: 1fr;
    }
    
    .mirror-card {
        padding: 1.5rem;
    }
} 