﻿/* Download Page Specific Styles - Tech Modern Design */

/* Hero Section - Tech Style */
.hero-section {
    background: linear-gradient(135deg, rgba(13, 40, 24, 0.75), rgba(30, 50, 30, 0.65));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    padding: 46px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Title - Tech Typography */
.hero-title {
    text-align: center;
    color: #9B59B6;
    font-size: 2.5em;
    font-weight: 800;
    margin: 0 0 26px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.2px;
    position: relative;
    z-index: 1;
}

/* Promo Text - Tech Card */
.promo-text {
    background: rgba(13, 40, 24, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #f0f0f0;
    font-size: 1.06em;
    padding: 24px 28px;
    margin: 0 0 30px 0;
    line-height: 1.8;
    text-align: left;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.promo-banner-image {
    width: 100%;
    max-width: 870px;
    height: auto;
    border-radius: 14px;
    margin: 26px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 9px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.45);
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.hero-cta .btn {
    font-size: 1.15em;
    padding: 17px 40px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.hero-cta .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Content Sections - Modern Tech Cards */
.content-section {
    margin: 70px 0;
}

.content-block {
    background: rgba(13, 40, 24, 0.65);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 14px;
    padding: 44px;
    margin-bottom: 48px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 46px;
    box-shadow: 0 7px 28px rgba(0, 0, 0, 0.35);
    position: relative;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #9B59B6, #FFA500);
    transition: height 0.4s;
    border-radius: 14px 0 0 14px;
}

.content-block:hover::before {
    height: 100%;
}

.content-block:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 14px 45px rgba(255, 215, 0, 0.25);
    transform: translateY(-5px);
    background: rgba(13, 40, 24, 0.8);
}

.content-block-left {
    flex-direction: row;
}

.content-block-right {
    flex-direction: row-reverse;
}

.content-block-right::before {
    left: auto;
    right: 0;
    border-radius: 0 14px 14px 0;
}

.content-text {
    flex: 1;
    min-width: 0;
}

.content-text h2 {
    color: #9B59B6;
    font-size: 1.9em;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.35;
    position: relative;
    padding-left: 15px;
}

.content-text h2::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #9B59B6;
    font-size: 0.6em;
    top: 0.2em;
}

.content-text p {
    color: #e4e4e4;
    font-size: 1.05em;
    line-height: 1.87;
    margin-bottom: 28px;
}

.content-text .btn {
    margin-top: 24px;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.content-text .btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
}

.content-image-wrapper {
    flex-shrink: 0;
    width: 365px;
    position: relative;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    display: block;
    transition: all 0.4s;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
}

.content-image:hover {
    transform: scale(1.04);
    border-color: #9B59B6;
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        border-radius: 0;
        margin: 20px 0;
        padding: 34px 20px;
    }
    
    .hero-section::after {
        display: none;
    }
    
    .hero-title {
        font-size: 1.9em;
        margin-bottom: 20px;
    }
    
    .promo-text {
        padding: 20px;
        font-size: 1em;
    }
    
    .content-block {
        flex-direction: column !important;
        padding: 30px 20px;
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
        gap: 28px;
    }
    
    .content-block::before {
        display: none;
    }
    
    .content-block-left,
    .content-block-right {
        flex-direction: column !important;
    }
    
    .content-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .content-image {
        width: 100%;
    }
    
    .content-text {
        width: 100%;
    }
    
    .content-text h2 {
        font-size: 1.6em;
        padding-left: 20px;
    }
    
    .content-text h2::before {
        left: 0;
    }
    
    .hero-cta {
        gap: 14px;
    }
    
    .hero-cta .btn {
        font-size: 1.05em;
        padding: 15px 30px;
    }
}
