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

:root {
    --bg-dark: #020202;
    --electric-cyan: #00F2FF;
    --deep-violet: #7000FF;
    --white-5: rgba(255, 255, 255, 0.05);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-70: rgba(255, 255, 255, 0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    overflow-x: hidden;
    cursor: none;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 999;
    box-shadow: 
        inset 0 0 60px rgba(0, 242, 255, 0.15),
        inset 0 0 100px rgba(112, 0, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
}

/* Wave Background Canvas */
#waveCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.8), rgba(112, 0, 255, 0.4));
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.6), 0 0 40px rgba(112, 0, 255, 0.4);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    mix-blend-mode: difference;
}

.custom-cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 242, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-out;
}

/* Main Content */
.main-content {
    min-height: 100vh;
    padding: 120px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    max-width: 1920px;
    margin: 0 auto;
}

/* Left Section - Image */
.left-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    grid-column: 1;
}

.kraken-image {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid var(--white-10);
    background: var(--white-5);
    padding: 8px;
    animation: breathing-glow 4s ease-in-out infinite;
}

.kraken-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    animation: image-animated 12s infinite;
    filter: contrast(1.15) brightness(0.92) saturate(1.1);
    position: relative;
    z-index: 2;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05), rgba(112, 0, 255, 0.05));
    border-radius: 8px;
    z-index: 1;
    animation: overlay-pulse 4s ease-in-out infinite;
}

@keyframes image-animated {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        filter: contrast(1.15) brightness(0.92) saturate(1.1);
    }
    5% {
        transform: translate(-3px, 2px) scale(1.002);
        filter: contrast(1.3) brightness(0.85) saturate(1.2);
    }
    10% {
        transform: translate(3px, -2px) scale(0.998);
        filter: contrast(1.4) brightness(0.8) saturate(1.3);
    }
    15% {
        transform: translate(-2px, 3px) scale(1.001);
        filter: contrast(1.2) brightness(0.88) saturate(1.15);
    }
    20% {
        transform: translate(2px, -3px) scale(0.999);
        filter: contrast(1.35) brightness(0.82) saturate(1.25);
    }
    25% {
        transform: translate(0, 0) scale(1);
        filter: contrast(1.15) brightness(0.92) saturate(1.1);
    }
    50% {
        transform: translate(0, 0) scale(1);
        filter: contrast(1.15) brightness(0.92) saturate(1.1);
    }
    52% {
        transform: translate(-4px, 3px) scale(1.003);
        filter: contrast(1.5) brightness(0.75) saturate(1.4);
    }
    54% {
        transform: translate(4px, -3px) scale(0.997);
        filter: contrast(1.6) brightness(0.7) saturate(1.5);
    }
    56% {
        transform: translate(-3px, 4px) scale(1.002);
        filter: contrast(1.3) brightness(0.85) saturate(1.2);
    }
    58% {
        transform: translate(3px, -4px) scale(0.998);
        filter: contrast(1.4) brightness(0.8) saturate(1.3);
    }
    60% {
        transform: translate(0, 0) scale(1);
        filter: contrast(1.15) brightness(0.92) saturate(1.1);
    }
    75% {
        transform: translate(0, 0) scale(1);
        filter: contrast(1.15) brightness(0.92) saturate(1.1);
    }
    77% {
        transform: translate(-2px, 1px) scale(1.001);
        filter: contrast(1.25) brightness(0.9) saturate(1.2);
    }
    79% {
        transform: translate(2px, -1px) scale(0.999);
        filter: contrast(1.3) brightness(0.88) saturate(1.25);
    }
    81% {
        transform: translate(0, 0) scale(1);
        filter: contrast(1.15) brightness(0.92) saturate(1.1);
    }
}

@keyframes overlay-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes border-beam-slow {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes breathing-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 242, 255, 0.3), 0 0 40px rgba(0, 242, 255, 0.2), 0 0 60px rgba(112, 0, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 242, 255, 0.5), 0 0 60px rgba(0, 242, 255, 0.3), 0 0 90px rgba(112, 0, 255, 0.2);
    }
}

@keyframes button-pulse {
    0%, 100% {
        box-shadow: 0 0 2px #fff, 0 0 10px #00f2ff, 0 0 20px #00f2ff, 0 0 40px #7000ff;
    }
    50% {
        box-shadow: 0 0 4px #fff, 0 0 15px #00f2ff, 0 0 30px #00f2ff, 0 0 60px #7000ff;
    }
}

.btn-advanced.btn-secondary {
    animation: button-pulse-secondary 3s ease-in-out infinite;
}

@keyframes button-pulse-secondary {
    0%, 100% {
        box-shadow: 0 0 2px #fff, 0 0 10px #7000ff, 0 0 20px #7000ff, 0 0 40px #00f2ff;
    }
    50% {
        box-shadow: 0 0 4px #fff, 0 0 15px #7000ff, 0 0 30px #7000ff, 0 0 60px #00f2ff;
    }
}

@keyframes button-pulse-hover {
    0%, 100% {
        box-shadow: 0 0 8px #fff, 0 0 25px #00f2ff, 0 0 50px #00f2ff, 0 0 80px #7000ff, 0 0 120px rgba(0, 242, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 12px #fff, 0 0 35px #00f2ff, 0 0 70px #00f2ff, 0 0 100px #7000ff, 0 0 150px rgba(0, 242, 255, 0.6);
    }
}

@keyframes button-pulse-hover-secondary {
    0%, 100% {
        box-shadow: 0 0 8px #fff, 0 0 25px #7000ff, 0 0 50px #7000ff, 0 0 80px #00f2ff, 0 0 120px rgba(112, 0, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 12px #fff, 0 0 35px #7000ff, 0 0 70px #7000ff, 0 0 100px #00f2ff, 0 0 150px rgba(112, 0, 255, 0.6);
    }
}

/* Right Section - Text and Buttons */
.right-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    grid-column: 2;
}

.kraken-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 33.6px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.kraken-description {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kraken-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.9;
    color: var(--white-70);
    flex: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.main-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

/* Advanced Animated Buttons */
.btn-advanced {
    position: relative;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 0;
    border: 2px solid;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: left;
    isolation: isolate;
    box-shadow: 0 0 2px #fff, 0 0 10px #00f2ff, 0 0 20px #00f2ff, 0 0 40px #7000ff;
    animation: button-pulse 3s ease-in-out infinite;
    text-decoration: none;
    color: inherit;
}


.btn-advanced .btn-text {
    position: relative;
    z-index: 3;
    display: block;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-advanced .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.btn-advanced .btn-glow {
    position: absolute;
    inset: -2px;
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    filter: blur(8px);
}

.btn-advanced.btn-primary {
    border-color: var(--electric-cyan);
    color: var(--electric-cyan);
}

.btn-advanced.btn-primary .btn-glow {
    background: var(--electric-cyan);
    box-shadow: 0 0 20px var(--electric-cyan), 0 0 40px var(--electric-cyan);
}

.btn-advanced.btn-primary:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--electric-cyan);
    transform: scale(1.05);
    box-shadow: 0 0 8px #fff, 0 0 25px #00f2ff, 0 0 50px #00f2ff, 0 0 80px #7000ff, 0 0 120px rgba(0, 242, 255, 0.4);
    animation: button-pulse-hover 2s ease-in-out infinite;
}

.btn-advanced.btn-primary:hover .btn-text {
    transform: translateX(4px);
}

.btn-advanced.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-advanced.btn-primary:hover .btn-glow {
    opacity: 0.6;
}

.btn-advanced.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 242, 255, 0.3);
}

.btn-advanced.btn-secondary {
    border-color: var(--deep-violet);
    color: var(--deep-violet);
}


.btn-advanced.btn-secondary .btn-glow {
    background: var(--deep-violet);
    box-shadow: 0 0 20px var(--deep-violet), 0 0 40px var(--deep-violet);
}

.btn-advanced.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--deep-violet);
    transform: scale(1.05);
    box-shadow: 0 0 8px #fff, 0 0 25px #7000ff, 0 0 50px #7000ff, 0 0 80px #00f2ff, 0 0 120px rgba(112, 0, 255, 0.4);
    animation: button-pulse-hover-secondary 2s ease-in-out infinite;
}

.btn-advanced.btn-secondary:hover .btn-text {
    transform: translateX(4px);
}

.btn-advanced.btn-secondary:hover .btn-shine {
    left: 100%;
}

.btn-advanced.btn-secondary:hover .btn-glow {
    opacity: 0.6;
}

.btn-advanced.btn-secondary:active {
    transform: scale(1.02);
    box-shadow: 0 0 3px #fff, 0 0 12px #7000ff, 0 0 25px #7000ff, 0 0 50px #00f2ff;
}

.btn-advanced.btn-secondary:hover .btn-text {
    transform: translateX(4px);
}

.btn-advanced.btn-secondary:hover .btn-shine {
    left: 100%;
}

.btn-advanced.btn-secondary:hover .btn-glow {
    opacity: 0.6;
}

.btn-advanced.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(112, 0, 255, 0.3);
}

/* Download Section */
.download {
    padding: 100px 120px;
    position: relative;
    border-top: 2px solid var(--white-10);
    z-index: 1;
}

.download-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.download-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: var(--white-60);
    margin-bottom: 60px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

@media (min-width: 768px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.download-card {
    padding: 32px;
    border-radius: 0;
    background: var(--white-5);
    border: 2px solid var(--white-10);
}

.download-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--electric-cyan);
}

.download-card-title.vpn-title {
    color: var(--deep-violet);
}

.download-card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--white-60);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 0;
    border: 1px solid rgba(0, 242, 255, 0.3);
    background: transparent;
    color: var(--electric-cyan);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.download-btn:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--electric-cyan);
    transform: translateX(4px);
}

.download-btn:active {
    transform: translateX(2px);
}

.download-btn.vpn-btn {
    border-color: rgba(112, 0, 255, 0.3);
    color: var(--deep-violet);
}

.download-btn.vpn-btn:hover {
    background: rgba(112, 0, 255, 0.1);
    border-color: var(--deep-violet);
}

.download-warning {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--white-40);
    margin-top: 40px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1440px) {
    .main-content {
        padding: 100px 80px;
        gap: 80px;
    }
    
    .download {
        padding: 80px 80px;
    }
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 60px;
        display: grid;
        justify-items: center;
    }
    
    .right-section {
        order: 1;
        display: contents;
        width: 100%;
    }
    
    .kraken-title {
        font-size: 25.6px;
        order: 1;
        margin-bottom: 0;
        grid-column: 1;
        text-align: center;
        width: 100%;
    }
    
    .kraken-description {
        display: none !important;
    }
    
    .left-section {
        order: 2;
        grid-column: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .kraken-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .main-buttons {
        order: 3;
        margin-top: 0;
        margin-bottom: 0;
        grid-column: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .download {
        padding: 60px 40px;
    }
    
    .download-title {
        font-size: 32px;
    }
    
    .download-card-title {
        font-size: 20px;
    }
    
    .download-subtitle {
        font-size: 13px;
    }
    
    .download-warning {
        font-size: 11px;
    }
    
    .download-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 60px 40px;
        gap: 30px;
        justify-items: center;
    }
    
    .right-section {
        order: 1;
        display: contents;
        width: 100%;
    }
    
    .kraken-title {
        font-size: 19.2px;
        order: 1;
        grid-column: 1;
        text-align: center;
        width: 100%;
    }
    
    .kraken-description {
        display: none !important;
    }
    
    .left-section {
        order: 2;
        grid-column: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .kraken-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .main-buttons {
        order: 3;
        grid-column: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .btn-advanced {
        padding: 18px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 400px;
        text-align: center;
    }
    
    .download {
        padding: 60px 24px;
    }
    
    .download-title {
        font-size: 24px;
    }
    
    .download-card-title {
        font-size: 18px;
    }
    
    .download-subtitle {
        font-size: 12px;
    }
    
    .download-warning {
        font-size: 10px;
    }
    
    .download-card {
        padding: 20px;
    }
}
