/* Emoji Support and Font Fallbacks */
@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji:wght@400&display=swap');

/* Global emoji font settings */
.flag, .emoji, .server-name, .location-name {
    font-family: 'Noto Color Emoji', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Twemoji Mozilla', 'Noto Emoji', 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1, "kern" 1;
}

/* Ensure proper emoji rendering in server status */
.server-status-item .server-name,
.location-dot .location-name {
    font-family: 'Inter', 'Noto Color Emoji', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Twemoji Mozilla', 'Noto Emoji', sans-serif;
}

/* Emoji optimization for better performance */
.flag, .emoji {
    display: inline-block;
    vertical-align: middle;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Fallback for systems without emoji support */
@supports not (font-variant-emoji: emoji) {
    .flag, .emoji {
        font-family: 'Arial Unicode MS', 'Lucida Grande', 'Inter', sans-serif;
    }
}

/* Navigation Logo Styles */
.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 8px 16px;
    margin-left: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-text i {
    font-size: 24px;
    color: #667eea;
    flex-shrink: 0;
}

.cookie-text p {
    color: #ffffff;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-actions .btn-primary,
.cookie-actions .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 100px;
}

.cookie-actions .btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.cookie-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cookie-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-text i {
        font-size: 20px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-actions .btn-primary,
    .cookie-actions .btn-secondary {
        flex: 1;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px 0;
    }
    
    .cookie-content {
        padding: 0 15px;
    }
    
    .cookie-text p {
        font-size: 12px;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-actions .btn-primary,
    .cookie-actions .btn-secondary {
        max-width: none;
        width: 100%;
    }
}

.logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    animation: logoPulse 2s ease-in-out infinite;
}

.logo-icon i {
    position: relative;
    z-index: 2;
    font-size: 16px;
    color: white;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text h1 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.logo-text .tagline {
    font-size: 10px;
    color: #cccccc;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.logo-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
    animation: particleFloat 4s linear infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: 3s;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.6));
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

/* Mobile responsive logo */
@media (max-width: 768px) {
    .logo-container {
        padding: 6px 10px 6px 14px;
        margin-left: 12px;
        gap: 6px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .logo-icon i {
        font-size: 14px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text .tagline {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        padding: 4px 8px 4px 12px;
        margin-left: 8px;
        gap: 4px;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .logo-icon i {
        font-size: 12px;
    }
    
    .logo-text h1 {
        font-size: 14px;
    }
    
    .logo-text .tagline {
        font-size: 7px;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(51, 51, 51, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #cccccc;
    border: 2px solid #cccccc;
}

.btn-secondary:hover {
    background: #cccccc;
    color: #1a1a1a;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}



.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    outline: none;
}

.nav-menu a:hover {
    color: #cccccc;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.hero-badge i {
    color: #4ade80;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
    25% {
        opacity: 0.7;
        transform: scale(1.1);
        filter: brightness(1.2);
    }
    50% {
        opacity: 0.9;
        transform: scale(0.95);
        filter: brightness(0.8);
    }
    75% {
        opacity: 1;
        transform: scale(1.05);
        filter: brightness(1.1);
    }
}

.hero-badge span {
    color: #ffffff;
    font-weight: normal;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.hero-badge small {
    opacity: 1;
    font-size: 1rem;
    color: #ffffff;
    display: block;
    margin-top: 5px;
    font-weight: normal;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #1a1a1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.testimonial-author h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header h3 {
    color: #cccccc;
    margin-bottom: 1rem;
}

.section-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Features */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.platforms {
    margin-top: 1.5rem;
}

.platforms span {
    display: block;
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: #cccccc;
}

/* Support Section */
.support {
    padding: 80px 0;
    background: #2a2a2a;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4ade80;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: statusBlink 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

.support-features {
    margin-top: 2rem;
}

.support-feature {
    margin-bottom: 1.5rem;
}

.support-feature h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.support-illustration {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    margin: 0 auto;
}

/* Reviews */
.reviews {
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.review-author {
    margin-top: 1rem;
    color: #cccccc;
}

/* CTA Sections */
.cta, .trial, .final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    color: white;
}

.cta h2, .trial h2, .final-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta p, .trial p, .final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Privacy Section */
.privacy {
    padding: 80px 0;
    background: #1a1a1a;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.privacy-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-5px);
}

.privacy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.protocol-card {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.protocol-card:hover {
    transform: translateY(-3px);
}

.protocol-card h4 {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

/* Locations */
.locations {
    padding: 80px 0;
}

.locations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.locations-text h4 {
    color: #cccccc;
    margin-bottom: 1rem;
}

.world-map {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.world-map i {
    font-size: 400px;
    color: #cccccc;
    opacity: 0.1;
}

.location-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.location-dot {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-dot:hover {
    transform: scale(1.2);
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #cccccc;
    border-radius: 50%;
    animation: pulse 2s infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.location-status {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.95);
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-dot:hover .location-status {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    background: #666;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-indicator.online {
    background: #4ade80;
    animation: statusBlink 2s ease-in-out infinite;
}

.status-indicator.offline {
    background: #ef4444;
    animation: none;
}

.status-indicator.checking {
    background: #f59e0b;
    animation: statusChecking 1s ease-in-out infinite;
}

.location-name {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
}

@keyframes statusChecking {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Server Status Panel */
.server-status-panel {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.server-status-panel h5 {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.server-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.server-status-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.server-status-item:hover {
    border-color: #cccccc;
    transform: translateY(-2px);
}

.server-status-item .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #666;
    flex-shrink: 0;
}

.server-status-item .status-dot.online {
    background: #4ade80;
    animation: statusBlink 2s ease-in-out infinite;
}

.server-status-item .status-dot.offline {
    background: #ef4444;
    animation: none;
}

.server-status-item .status-dot.checking {
    background: #f59e0b;
    animation: statusChecking 1s ease-in-out infinite;
}

.server-status-item .server-name {
    color: #ffffff;
    font-weight: 500;
    flex: 1;
}

/* Flag styles for server names - removed to avoid duplication with HTML flags */

.server-status-item .server-status {
    color: #cccccc;
    font-size: 0.8rem;
    text-align: right;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background: #2a2a2a;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #404040;
}

.comparison-table th {
    background: #666666;
    color: white;
    font-weight: 600;
}

.comparison-table tr:hover {
    background: #333333;
}

/* Blog */
.blog {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-card h4 {
    padding: 1.5rem;
    color: #ffffff;
}

/* Partners */
.partners {
    padding: 80px 0;
    background: #2a2a2a;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card h4 {
    color: #cccccc;
    margin-bottom: 1rem;
}

.partner-card p {
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq-item {
    background: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #3a3a3a;
}

.faq-question h4 {
    margin: 0;
    color: #ffffff;
}

.faq-question i {
    color: #cccccc;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #cccccc;
    margin-bottom: 1rem;
}

.footer-section h4 a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section h4 a:hover {
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #cccccc;
}

.footer-platforms {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.platform-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.platform-links a {
    color: #d1d5db;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.platform-links a:hover {
    color: #cccccc;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: #666666;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
}

/* Language Selector */
.nav-language {
    position: relative;
    margin: 0 1rem;
}

.language-selector {
    position: relative;
    display: inline-block;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.language-btn:hover {
    border-color: #cccccc;
    background: rgba(204, 204, 204, 0.1);
}

.language-btn .flag {
    font-size: 1.1rem;
}

.language-btn .language-name {
    margin: 0 4px;
}

.language-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-selector.active .language-btn i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 4px;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(204, 204, 204, 0.1);
    color: #cccccc;
}

.language-option.active {
    background: rgba(204, 204, 204, 0.2);
    color: #cccccc;
}

.language-option .flag {
    font-size: 1.1rem;
}

.language-option .language-name {
    font-weight: 500;
}

/* Desktop Language Selector */
.desktop-language-selector {
    position: relative;
    display: inline-block;
}

        .desktop-language-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            padding: 8px;
        }

.desktop-language-btn:hover {
    border-color: #cccccc;
    background: rgba(204, 204, 204, 0.1);
}

.desktop-language-btn .flag {
    font-size: 1.2rem;
}

.desktop-language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 4px;
}

.desktop-language-selector.active .desktop-language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}




/* Responsive Design */
@media (max-width: 768px) {
    /* Header and Navigation */
    .nav-menu {
        display: none;
    }
    
    .nav-language {
        display: none; /* Hide desktop language selector */
    }
    
    .desktop-language-selector {
        display: block; /* Show desktop language selector on mobile */
    }
    
    .mobile-language-bar {
        display: none; /* Hide mobile language bar */
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 60px; /* Reduced top padding since mobile language bar is removed */
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    /* Grid Layouts */
    .support-content,
    .locations-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .protocols-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* World Map */
    .world-map {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .world-map i {
        font-size: 280px;
    }
    
    .location-dots {
        width: 280px;
        height: 280px;
    }
    
    /* Server Status Panel */
    .server-status-panel {
        margin-top: 1.5rem;
    }
    
    .server-status-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .platform-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .platform-links a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    /* Desktop Language Selector Mobile Adaptation */
    .desktop-language-selector {
        position: relative;
        display: inline-block;
    }
    
    .desktop-language-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.3rem;
        padding: 10px;
    }
    
    .desktop-language-btn:hover {
        border-color: #cccccc;
        background: rgba(204, 204, 204, 0.1);
    }
    
    .desktop-language-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        background: #1a1a1a;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        min-width: 160px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1001;
        margin-top: 4px;
    }
    
    .desktop-language-selector.active .desktop-language-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    

    
    /* Mobile Menu */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0;
        z-index: 999;
    }
    
    .nav-menu.active a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
        font-weight: 500;
        outline: none;
    }
    
    .nav-menu.active a:last-child {
        border-bottom: none;
    }
    
    .nav-menu.active a:hover {
    background: rgba(204, 204, 204, 0.1);
    color: #cccccc;
}
    
    .nav-actions.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 200px); /* Below mobile menu */
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 2rem;
        gap: 1rem;
        z-index: 999;
    }
    
    .nav-actions.active .btn-primary,
    .nav-actions.active .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    /* Mobile Toggle Animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */

    
    /* Hero Section */
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-badge {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Grid Layouts */
    .features-grid,
    .testimonials-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .protocols-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* World Map */
    .world-map {
        width: 250px;
        height: 250px;
    }
    
    .world-map i {
        font-size: 250px;
    }
    
    .location-dots {
        width: 250px;
        height: 250px;
    }
    
    /* Server Status */
    .server-status-item {
        padding: 0.75rem;
    }
    
    .server-status-item .server-name {
        font-size: 0.9rem;
    }
    
    .server-status-item .server-status {
        font-size: 0.8rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .platform-links {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-links a {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    /* Mobile Language Bar */

    
    /* Desktop Language Selector for Small Mobile */
    .desktop-language-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        padding: 8px;
    }
    
    /* Cards */
    .feature-card,
    .testimonial-card,
    .privacy-card,
    .blog-card,
    .partner-card {
        padding: 1.5rem;
    }
    
    /* FAQ */
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    /* Touch-friendly improvements */
    .btn-primary,
    .btn-secondary {
        min-height: 44px; /* Minimum touch target size */
    }
    
    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Better spacing for mobile */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        margin-bottom: 1rem;
    }
    
    .section-header h3 {
        margin-bottom: 0.5rem;
    }
    
    /* Improved mobile scrolling */
    .container {
        overflow-x: hidden;
    }
    
    /* Better mobile form elements */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.review-card,
.privacy-card,
.blog-card,
.partner-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.contact-details a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
}

.social-links {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #666666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.contact-form {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #404040;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #1a1a1a;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cccccc;
}

/* Privacy & Terms Page Styles */
.privacy-content,
.terms-content,
.refund-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-section,
.terms-section,
.refund-section {
    margin-bottom: 3rem;
}

.privacy-section h2,
.terms-section h2,
.refund-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #cccccc;
}

.privacy-section h3,
.terms-section h3,
.refund-section h3 {
    color: #cccccc;
    margin: 1.5rem 0 1rem;
}

.privacy-section ul,
.terms-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li,
.terms-section li,
.refund-section li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

/* Wiki Page Styles */
.wiki-navigation {
    padding: 80px 0;
    background: #2a2a2a;
}

.wiki-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.wiki-category {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.wiki-category h2 {
    color: #cccccc;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wiki-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wiki-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.wiki-link:hover {
    background: #666666;
    color: white;
    transform: translateY(-2px);
}

.wiki-link i {
    font-size: 1.5rem;
    color: #cccccc;
    transition: color 0.3s ease;
}

.wiki-link:hover i {
    color: white;
}

.wiki-link h4 {
    margin-bottom: 0.25rem;
}

.wiki-link p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.quick-start {
    padding: 80px 0;
}

.quick-start-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-start-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.quick-start-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quick-start-card i {
    font-size: 3rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.quick-start-card h3 {
    margin-bottom: 0.5rem;
}

.quick-start-card p {
    color: #cccccc;
    margin: 0;
}

/* Wiki Content Styles */
.breadcrumb {
    padding: 1rem 0;
    background: #2a2a2a;
    border-bottom: 1px solid #404040;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #cccccc;
    text-decoration: none;
}

.breadcrumb-nav span {
    color: #cccccc;
}

.wiki-content {
    padding: 40px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.content-main {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.wiki-section {
    margin-bottom: 3rem;
}

.wiki-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #cccccc;
}

.wiki-section h3 {
    color: #cccccc;
    margin: 1.5rem 0 1rem;
}

.step-box {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #cccccc;
}

.step-box h4 {
    color: #cccccc;
    margin-bottom: 1rem;
}

.info-box,
.warning-box,
.success-box {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.info-box {
    background: #1a1a1a;
    border-left: 4px solid #cccccc;
}

.warning-box {
    background: #1a1a1a;
    border-left: 4px solid #cccccc;
}

.success-box {
    background: #1a1a1a;
    border-left: 4px solid #cccccc;
}

.info-box h4,
.warning-box h4,
.success-box h4 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-block {
    background: #2a2a2a;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Courier New', monospace;
}

.code-example {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.code-example pre {
    background: #2a2a2a;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0 0;
}

.troubleshooting {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #cccccc;
}

.troubleshooting h3 {
    color: #cccccc;
    margin-bottom: 1rem;
}

.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.sidebar-section h3 {
    color: #cccccc;
    margin-bottom: 1rem;
}

.sidebar-nav,
.sidebar-links {
    list-style: none;
}

.sidebar-nav li,
.sidebar-links li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a,
.sidebar-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-links a:hover {
    color: #cccccc;
}

/* Refund Page Specific Styles */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #cccccc;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: #666666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee-content h3 {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.refund-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.refund-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 12px;
    border-left: 4px solid #cccccc;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #666666;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.refund-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.refund-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 2px solid #404040;
    transition: all 0.3s ease;
}

.refund-method:hover {
    border-color: #cccccc;
    transform: translateY(-2px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: #cccccc;
    margin: 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: #666666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-method a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #2a2a2a;
}

::-webkit-scrollbar-thumb {
    background: #666666;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #888888;
} 

/* Tariffs Page Styles */
.tariffs-section {
    padding: 60px 0;
    background: #000000;
}

.tariffs-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tariffs-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.tariffs-section .section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tariff-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.tariff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tariff-card.popular {
    background: linear-gradient(135deg, #1a1a1a, #1f1f1f);
}

.tariff-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tariff-header {
    text-align: center;
    margin-bottom: 32px;
}

.tariff-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.tariff-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
}

.price-period {
    font-size: 1rem;
    color: #cccccc;
}

.tariff-savings {
    margin-top: 8px;
}

.savings-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tariff-features {
    margin-bottom: 32px;
}

.tariff-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tariff-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #cccccc;
    font-size: 0.95rem;
}

.tariff-features li i {
    color: #667eea;
    font-size: 0.9rem;
    min-width: 16px;
}

.tariff-action {
    text-align: center;
}

.tariff-action .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tariffs-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: white;
}

.info-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.info-content p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Tariffs */
@media (max-width: 768px) {
    .tariffs-section {
        padding: 40px 0;
    }
    
    .tariffs-section .section-title {
        font-size: 2rem;
    }
    
    .tariffs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tariff-card {
        padding: 24px;
    }
    
    .tariff-name {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .tariffs-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tariffs-section .section-title {
        font-size: 1.8rem;
    }
    
    .tariff-card {
        padding: 20px;
    }
    
    .tariff-name {
        font-size: 1.2rem;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .info-icon {
        align-self: center;
    }
}

/* IP Check Page Styles */
.ip-check-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #727272 100%);
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.ip-check-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.ip-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ip-header {
    margin-bottom: 30px;
}

.ip-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.ip-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ip-address i {
    font-size: 1.5rem;
    color: #ecf0f1;
}

.ip-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    opacity: 0.9;
}

.detail-value {
    font-weight: 600;
    color: #fff;
}

.ip-security-status {
    margin-top: 20px;
}

.security-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* IP Info Section */
.ip-info-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-card .info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #333333, #666666);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.info-card .info-icon i {
    font-size: 2rem;
    color: white;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.info-card p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
}

/* VPN Solution Section */
.vpn-solution-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    color: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.solution-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.solution-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.solution-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-illustration i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
}

/* IP Education Section */
.ip-education-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.education-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
}

.education-card .education-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #333333, #666666);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.education-card .education-icon i {
    font-size: 1.5rem;
    color: white;
}

.education-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.education-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ip-versions {
    margin-top: 20px;
}

.version-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #cccccc;
}

/* How to Find IP Section */
.how-to-find-ip-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.device-tabs {
    margin-top: 50px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #cccccc;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn:hover {
    background: #333333;
    color: white;
    border-color: #333333;
}

.tab-btn.active {
    background: #333333;
    color: white;
    border-color: #333333;
}

.tab-content {
    max-width: 800px;
    margin: 0 auto;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.instruction-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #666666;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.instruction-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.instruction-card p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.instruction-card ol {
    color: #cccccc;
    line-height: 1.8;
    padding-left: 20px;
}

.instruction-card li {
    margin-bottom: 10px;
}

.instruction-card code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #cccccc;
}

.phone-instructions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.phone-type h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ip-check-section {
        padding: 60px 0;
    }
    
        .ip-header h2 {
        font-size: 2rem;
    }
    
    .ip-address {
        font-size: 1.5rem;
        padding: 15px;
    }
    
    .ip-info-card {
        padding: 30px 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .solution-text h2 {
        font-size: 2rem;
    }
    
    .solution-text h3 {
        font-size: 1.5rem;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tab-buttons {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .instruction-card {
        padding: 25px;
    }
    
    .phone-instructions {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .ip-check-section {
        padding: 40px 0;
    }
    
        .ip-header h2 {
        font-size: 1.8rem;
    }
    
    .ip-address {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .ip-info-card {
        padding: 20px 15px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .solution-text h2 {
        font-size: 1.8rem;
    }
    
    .solution-text h3 {
        font-size: 1.3rem;
    }
    
    .solution-illustration i {
        font-size: 5rem;
    }
    
    .education-card {
        padding: 20px;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .instruction-card {
        padding: 20px;
    }
    
    .instruction-card h3 {
        font-size: 1.3rem;
    }
}