/* Universal Download Pages Header Styles */
.download-header {
    background: linear-gradient(135deg, #1a5490 0%, #2d7dd2 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.download-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.download-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-logo::before {
    content: "📱";
    font-size: 2rem;
}

.download-nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.download-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.download-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.download-nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.download-nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #d4af37;
    border-radius: 1px;
}

.download-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.download-mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .download-header-container {
        padding: 0 1rem;
    }
    
    .download-nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #1a5490 0%, #2d7dd2 100%);
        flex-direction: column;
        padding: 2rem 0;
        transition: left 0.3s ease;
        gap: 1rem;
    }
    
    .download-nav-menu.active {
        left: 0;
    }
    
    .download-nav-link {
        width: 90%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .download-mobile-menu-toggle {
        display: block;
    }
    
    .download-mobile-menu-toggle.active {
        transform: rotate(90deg);
    }
}

/* Universal Download Pages Footer Styles */
.download-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.download-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.download-footer-section h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.download-footer-section li {
    margin-bottom: 0.5rem;
}

.download-footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.download-footer-section a:hover {
    color: #d4af37;
}

.download-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

.download-footer-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.download-footer-nav a {
    color: #ccc;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #444;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.download-footer-nav a:hover {
    color: #d4af37;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

/* Universal Page Container */
.download-page-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .download-page-container {
        margin: 1rem;
        padding: 0 1rem;
    }
}

/* Data Center Preview Section */
.datacenter-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin: 2rem 0;
}

.datacenter-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.datacenter-content h2 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 700;
}

.datacenter-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 3rem;
    font-weight: 400;
}

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

.datacenter-feature {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.datacenter-feature h3 {
    font-size: 1.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 600;
}

.datacenter-feature p {
    color: #6c757d;
    line-height: 1.6;
}

.datacenter-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.datacenter-cta p {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .datacenter-content h2 {
        font-size: 2rem;
    }
    
    .datacenter-subtitle {
        font-size: 1.1rem;
    }
    
    .datacenter-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .datacenter-feature {
        padding: 1.5rem;
    }
}

/* Breadcrumb styles for download pages */
.download-breadcrumbs {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.download-breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.download-breadcrumbs a {
    color: #1a5490;
    text-decoration: none;
    font-weight: 500;
}

.download-breadcrumbs a:hover {
    color: #d4af37;
}

.download-breadcrumbs span {
    color: #666;
}

/* Header variants for different pages */
.download-header-xbet {
    background: linear-gradient(135deg, #1a5490 0%, #2d7dd2 100%);
}

.download-header-support {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.download-header-guides {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
}

.download-header-verification {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
}

/* Logo variants */
.download-logo-xbet::before {
    content: "📱";
}

.download-logo-support::before {
    content: "🆘";
}

.download-logo-guides::before {
    content: "📚";
}

.download-logo-verification::before {
    content: "✅";
}