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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.Container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.NavBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.NavContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.NavLogo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.NavMenu {
    display: flex;
    gap: 30px;
}

.NavLink {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.NavLink:hover {
    color: #ffffff;
}

.NavLink::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7289da, #5865f2);
    transition: width 0.3s ease;
}

.NavLink:hover::after {
    width: 100%;
}

.NavToggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.Bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.Hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 70px;
    overflow: hidden;
}

.HeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.HeroContent {
    max-width: 800px;
    margin: 0;
    flex: 1 1 0%;
}

.HeroTitle {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.GradientText {
    background: linear-gradient(135deg, #7289da, #5865f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.HeroDescription {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.HeroButtons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.Btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.BtnPrimary {
    background: linear-gradient(135deg, #7289da, #5865f2);
    color: white;
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.3);
}

.BtnPrimary:hover {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.4);
}

.BtnSecondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.BtnSecondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.DownloadLocked {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.4) !important;
    cursor: not-allowed !important;
    pointer-events: none;
    box-shadow: none !important;
}

.DownloadLocked:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: none !important;
    box-shadow: none !important;
}

.DownloadLocked::before {
    display: none !important;
}

.HeroVisual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 0%;
}

.HeroCard {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.CardContent h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.CardContent p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.HeroBackground {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

.FloatingShapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.Shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.1), rgba(88, 101, 242, 0.1));
    animation: float-shape 20s infinite linear;
}

.Shape1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.Shape2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    animation-delay: -5s;
}

.Shape3 {
    width: 80px;
    height: 80px;
    top: 80%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float-shape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.SectionHeader {
    text-align: center;
    margin-bottom: 60px;
}

.SectionTitle {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.SectionDescription {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.Features {
    padding: 100px 0;
    position: relative;
}

.FeaturesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.FeatureCard {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.FeatureCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.12);
}

.FeatureIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7289da, #5865f2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.FeatureCard:hover .FeatureIcon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(114, 137, 218, 0.4);
}

.FeatureCard h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.FeatureCard p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.Download {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}







.DownloadContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.DownloadInfo h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.DownloadInfo p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.DownloadDetails {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.DetailItem {
    display: flex;
    align-items: center;
    gap: 12px;
}

.DetailItem i {
    color: #2ed573;
    font-size: 18px;
}

.DetailItem span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.DownloadCard {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.DownloadVersion h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.VersionNumber {
    font-size: 2.5rem;
    font-weight: 800;
    color: #7289da;
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
}

.VersionDate {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 30px;
    filter: none !important;
}

.DownloadActions {
    margin-bottom: 30px;
}

.DownloadSize {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 12px;
}

.DownloadPlaceholderText {
    color: rgba(255, 255, 255, 0.3) !important;
}

.CountdownTimer {
    text-align: center;
    margin-bottom: 20px;
}

.CountdownTitle {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.CountdownGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
}

.CountdownItem {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.CountdownItem:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(114, 137, 218, 0.3);
    transform: translateY(-2px);
}

.CountdownNumber {
    font-size: 2rem;
    font-weight: 800;
    color: #7289da;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(114, 137, 218, 0.5);
}

.CountdownLabel {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .HeroContainer, .Container {
        padding: 0 10px;
    }
    .HeroCard {
        width: 100%;
        min-width: 0;
        padding: 20px;
    }
    .FeaturesGrid {
        gap: 20px;
    }
    .DownloadContent {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .HeroContainer {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: flex-start;
        gap: 24px;
    }
    .HeroContent {
        max-width: 100%;
        margin-bottom: 0;
    }
    .HeroVisual {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .DownloadContent {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .DownloadInfo, .DownloadCard {
        width: 100%;
        max-width: 100%;
    }

}

@media (max-width: 768px) {
    .NavMenu {
        position: fixed !important;
        left: -100% !important;
        top: 70px !important;
        flex-direction: column !important;
        background-color: rgba(15, 15, 35, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        width: 100% !important;
        text-align: center !important;
        transition: 0.3s !important;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05) !important;
        padding: 5px 0 !important;
        gap: 2px !important;
    }
    .NavMenu.active {
        left: 0 !important;
    }
    .NavToggle {
        display: flex !important;
    }
    .NavLink {
        padding: 5px 0 !important;
        font-size: 0.8rem !important;
        margin: 0 !important;
    }
    .HeroTitle {
        font-size: 2.5rem;
    }
    .SectionTitle {
        font-size: 2.5rem;
    }
    .HeroButtons {
        justify-content: center;
    }
}
@media (min-width: 769px) {
    .NavToggle {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .HeroTitle {
        font-size: 2rem;
    }
    .SectionTitle {
        font-size: 2rem;
    }
    .Btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    .DownloadCard, .HeroCard, .FeatureCard {
        padding: 20px 8px;
    }
}

.Footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 20px;
}
.FooterContent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.FooterLogo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}
.FooterSection h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}
.FooterSection p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}
.FooterSection ul {
    list-style: none;
    padding: 0;
}
.FooterSection ul li {
    margin-bottom: 12px;
}
.FooterSection ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.FooterSection ul li a:hover {
    color: #7289da;
}
.SocialLinks {
    display: flex;
    gap: 16px;
}
.SocialLink {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}
.SocialLink:hover {
    background: rgba(114, 137, 218, 0.2);
    border-color: rgba(114, 137, 218, 0.3);
    color: #7289da;
    transform: translateY(-2px);
}
.FooterBottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.FooterBottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.DownloadRequirements {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.DownloadRequirements:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(114, 137, 218, 0.2);
    transform: translateY(-2px);
}

.DownloadRequirements h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.DownloadRequirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.DownloadRequirements li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.DownloadRequirements li:hover {
    background: rgba(114, 137, 218, 0.1);
    border-color: rgba(114, 137, 218, 0.3);
    color: #ffffff;
    transform: translateX(4px);
}

.DownloadRequirements li::before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237289da' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20,6 9,17 4,12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .DownloadRequirements ul {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .DownloadRequirements li {
        padding: 10px 14px;
        font-size: 13px;
    }
}

.SystemChecker {
    margin-top: 24px;
    text-align: center;
}

.SystemCheckBtn {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.2), rgba(114, 137, 218, 0.1));
    border: 1px solid rgba(114, 137, 218, 0.3);
    color: #7289da;
    transition: all 0.3s ease;
}

.SystemCheckBtn:hover {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.3), rgba(114, 137, 218, 0.2));
    border-color: rgba(114, 137, 218, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.2);
}

.SystemResults {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease;
}

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

.SystemResults h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.SystemSpecs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.SpecItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.SpecItem:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(114, 137, 218, 0.2);
}

.SpecLabel {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 14px;
}

.SpecValue {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

.CompatibilityStatus {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.CompatibilityStatus.compatible {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
}

.CompatibilityStatus.warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.CompatibilityStatus.incompatible {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

@media (max-width: 768px) {
    .SystemSpecs {
        gap: 8px;
    }
    
    .SpecItem {
        padding: 10px 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .SpecValue {
        text-align: left;
        max-width: 100%;
        font-size: 13px;
    }
}

.TechStack {
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.TechStack h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.TechIcons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.TechItem {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.TechItem:hover {
    background: rgba(114, 137, 218, 0.1);
    border-color: rgba(114, 137, 218, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.TechItem i {
    font-size: 18px;
    color: #7289da;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .TechIcons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .TechItem {
        justify-content: center;
    }
}




