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

:root {
    --primary-color: #c9184a;
    --primary-dark: #a4133c;
    --secondary-color: #ff4d6d;
    --accent-gold: #d4af37;
    --accent-silver: #c0c0c0;
    --accent-bronze: #cd7f32;
    --text-dark: #1a1a2e;
    --text-light: #4a4a68;
    --background-light: #fff9fb;
    --border-light: #ffd6e0;
    --success-green: #06d6a0;
    --error-red: #ef476f;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--background-light);
    overflow-x: hidden;
}

header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(201, 24, 74, 0.2);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s, transform 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 77, 109, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 0.6s ease;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.highlight {
    background: linear-gradient(120deg, var(--accent-gold) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.page-header p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeInUp 1s ease;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 1.2s ease;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
}

.site-card {
    border-bottom: 2px solid var(--border-light);
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
}

.site-card:hover {
    background: linear-gradient(135deg, #fff9fb 0%, #fff 100%);
    transform: translateX(5px);
}

.site-card:last-child {
    border-bottom: none;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.site-rank {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.gold-rank {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffd700 100%);
}

.silver-rank {
    background: linear-gradient(135deg, #b8b8b8 0%, #e8e8e8 100%);
}

.bronze-rank {
    background: linear-gradient(135deg, #cd7f32 0%, #e6a057 100%);
}

.site-info {
    flex: 1;
    min-width: 250px;
}

.site-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.site-rating {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.verified-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--success-green) 0%, #00b894 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.visit-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem 2.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.35rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 24, 74, 0.3);
    white-space: nowrap;
}

.visit-button:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 24, 74, 0.4);
}

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

.feature-tag {
    background: linear-gradient(135deg, var(--background-light) 0%, #fff 100%);
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 24, 74, 0.1);
}

.site-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid;
}

.pros {
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%);
    border-color: var(--success-green);
}

.cons {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border-color: var(--error-red);
}

.pros h4 {
    color: var(--success-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.cons h4 {
    color: var(--error-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.pros ul, .cons ul {
    list-style: none;
    padding-left: 0;
}

.pros li, .cons li {
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 900;
    font-size: 1.2rem;
}

.cons li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error-red);
    font-weight: 900;
    font-size: 1.2rem;
}

.site-highlight {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.site-highlight strong {
    color: var(--primary-color);
}

.content-section {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.why-slavic {
    background: linear-gradient(135deg, #fff9fb 0%, #fff 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 24, 74, 0.15);
}

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

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.8;
}

.guide-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.guide-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--border-light);
}

.guide-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 5rem 2rem;
    margin: 0 -2rem;
    color: white;
}

.testimonials-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

.faq-section h2 {
    margin-bottom: 3rem;
}

.faq-item {
    background: linear-gradient(135deg, var(--background-light) 0%, #fff 100%);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(201, 24, 74, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    padding: 5rem 3rem;
    border-radius: 25px;
    text-align: center;
    color: white;
    margin: 4rem 0;
    box-shadow: 0 15px 50px rgba(201, 24, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 77, 109, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Mobile Optimization */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .stats-row {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guide-step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 1.5rem;
        justify-content: center;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-links {
        display: none;
    }

    .page-header {
        padding: 3rem 1.5rem 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .page-header p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .container {
        padding: 2rem 1.5rem;
    }

    .site-card {
        padding: 2rem 1.5rem;
    }

    .site-header {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }

    .site-rank {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .site-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .site-name {
        font-size: 1.5rem;
        text-align: center;
    }

    .site-rating {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .verified-badge {
        margin-top: 0.5rem;
    }

    .visit-button {
        width: 100%;
        text-align: center;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        max-width: none;
    }

    .site-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
    }

    .feature-tag {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        text-align: center;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .content-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-box {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .feature-box h3 {
        font-size: 1.2rem;
    }

    .testimonials-section {
        padding: 3rem 1.5rem;
        margin: 0 -1.5rem;
    }

    .testimonials-section h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
        margin: 2rem 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .stats-row {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .site-card {
        padding: 1.5rem 1rem;
    }

    .site-header {
        gap: 1.2rem;
    }

    .site-rank {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .site-name {
        font-size: 1.3rem;
    }

    .site-rating {
        font-size: 1rem;
    }

    .verified-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.9rem;
    }

    .visit-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .site-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .feature-tag {
        padding: 0.5rem 0.7rem;
        font-size: 0.75rem;
    }

    .site-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .pros, .cons {
        padding: 1rem;
    }

    .testimonials-section h2 {
        font-size: 1.6rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Focus styles for accessibility */
a:focus, button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}