.download-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.download-header {
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(26, 34, 46, 0.98) 0%, rgba(20, 27, 37, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.download-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/pattern.png")/*tpa=http://www.suddensiege.com/assets/images/pattern.png*/ repeat;
    opacity: 0.1;
    pointer-events: none;
}

.download-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 183, 0, 0.5), transparent);
}

.download-header h1 {
    color: #FFB700;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 183, 0, 0.3);
    position: relative;
}

.download-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
}

.category-link {
    padding: 14px 35px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.category-link:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 183, 0, 0.3);
    transform: translateY(-1px);
}

.category-link:hover::before {
    opacity: 1;
}

.category-link.active {
    background: linear-gradient(180deg, #FFB700 0%, #FF9500 100%);
    border: none;
    color: #1A222E;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 183, 0, 0.25);
}

.download-list {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: linear-gradient(180deg, rgba(26, 34, 46, 0.98) 0%, rgba(20, 27, 37, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/pattern.png")/*tpa=http://www.suddensiege.com/assets/images/pattern.png*/ repeat;
    opacity: 0.1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.download-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 183, 0, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.download-item:hover::before {
    opacity: 0.15;
}

.download-info {
    flex: 1;
    min-width: 0;
    padding-right: 40px;
    position: relative;
}

.download-info h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.download-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.version {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 183, 0, 0.1);
    border: 1px solid rgba(255, 183, 0, 0.2);
    border-radius: 6px;
    color: #FFB700;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.version i {
    width: 14px;
    height: 14px;
    color: #FFB700;
}

.download-action {
    display: flex;
    gap: 15px;
    position: relative;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(180deg, #FFB700 0%, #FF9500 100%);
    border: none;
    border-radius: 8px;
    color: #1A222E;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 183, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 0, 0.3);
}

.download-button:hover::before {
    opacity: 1;
}

.download-button:active {
    transform: translateY(0);
}

.download-button i {
    width: 18px;
    height: 18px;
}

.no-links {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-style: italic;
}

.coming-soon {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(26, 34, 46, 0.98) 0%, rgba(20, 27, 37, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/pattern.png")/*tpa=http://www.suddensiege.com/assets/images/pattern.png*/ repeat;
    opacity: 0.1;
    pointer-events: none;
}

.coming-soon h2 {
    color: #FFB700;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 183, 0, 0.3);
    position: relative;
}

.coming-soon p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .download-container {
        margin: 20px auto;
    }

    .download-header {
        padding: 20px;
    }

    .download-categories {
        flex-wrap: wrap;
    }

    .category-link {
        flex: 1;
        text-align: center;
        padding: 6px 12px;
        font-size: 14px;
    }

    .download-item {
        padding: 15px;
    }

    .download-meta {
        flex-direction: column;
        gap: 8px;
    }

    .coming-soon {
        padding: 30px 20px;
    }
}

:root {
    --gold: #FFB700;
}
