/* Revolutionary SkkyShop CSS - The Future of Web Design */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    perspective: 1000px;
}

body {
    font-family: 'Times New Roman', serif;
    background: #fff;
    color: #000000;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    min-height: 100vh;
    height: auto;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0,0,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,0,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0,0,0,0.1) 0%, transparent 50%);
}

/* Elegant Line Background System */
.bg-3d-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Vintage Newspaper Grid */
.holographic-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridFloat 12s ease-in-out infinite;
    opacity: 0.6;
}

/* Floating Lines */
.floating-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.3), transparent);
    animation: lineFloat 12s linear infinite;
}

.line-1 {
    top: 20%;
    left: -100%;
    width: 200px;
    height: 1px;
    animation-delay: 0s;
    animation-duration: 15s;
}

.line-2 {
    top: 40%;
    right: -100%;
    width: 300px;
    height: 1px;
    animation-delay: 3s;
    animation-duration: 18s;
}

.line-3 {
    top: 60%;
    left: -100%;
    width: 250px;
    height: 1px;
    animation-delay: 6s;
    animation-duration: 20s;
}

.line-4 {
    top: 80%;
    right: -100%;
    width: 180px;
    height: 1px;
    animation-delay: 9s;
    animation-duration: 16s;
}

.line-5 {
    top: 10%;
    left: -100%;
    width: 320px;
    height: 1px;
    animation-delay: 12s;
    animation-duration: 22s;
}

@keyframes gridFloat {
    0%, 100% { 
        opacity: 0.3;
        transform: translateY(0);
    }
    50% { 
        opacity: 0.6;
        transform: translateY(-10px);
    }
}

@keyframes lineFloat {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

/* Elegant Geometric Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 0.2);
    animation: shapeFloat 20s infinite linear;
}

.shape-1 {
    top: 15%;
    left: 10%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    top: 60%;
    right: 20%;
    width: 30px;
    height: 30px;
    border-radius: 0;
    animation-delay: -8s;
    animation-duration: 30s;
}

.shape-3 {
    top: 80%;
    left: 15%;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    animation-delay: -15s;
    animation-duration: 20s;
}

.shape-4 {
    top: 30%;
    right: 10%;
    width: 35px;
    height: 35px;
    border-radius: 0;
    animation-delay: -12s;
    animation-duration: 28s;
}

@keyframes shapeFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0.3;
    }
}

/* Neural Network */
.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffa500;
    border-radius: 50%;
    box-shadow: 0 0 20px #ffa500;
    animation: nodePulse 2s infinite;
}

.node-1 { top: 20%; left: 20%; animation-delay: 0s; }
.node-2 { top: 40%; right: 30%; animation-delay: 0.5s; }
.node-3 { top: 60%; left: 40%; animation-delay: 1s; }
.node-4 { top: 80%; right: 20%; animation-delay: 1.5s; }
.node-5 { top: 10%; left: 60%; animation-delay: 2s; }

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffa500, transparent);
    animation: connectionFlow 3s infinite;
}

.connection-1 {
    top: 20%;
    left: 20%;
    width: 200px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.connection-2 {
    top: 40%;
    right: 30%;
    width: 150px;
    transform: rotate(-30deg);
    animation-delay: 1s;
}

.connection-3 {
    top: 60%;
    left: 40%;
    width: 180px;
    transform: rotate(60deg);
    animation-delay: 2s;
}

.connection-4 {
    top: 80%;
    right: 20%;
    width: 120px;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

@keyframes nodePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px #ffa500;
    }
    50% { 
        transform: scale(1.5);
        box-shadow: 0 0 40px #ffa500, 0 0 60px #ffa500;
    }
}

@keyframes connectionFlow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transform: rotate(-25deg);
}

/* Vintage Newspaper Header */
.header {
    padding: 2rem 0;
    text-align: center;
    border-bottom: 3px double #000000;
    margin-bottom: 2rem;
    position: relative;
}

.newspaper-header {
    font-family: 'Times New Roman', serif;
}

.newspaper-date {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666666;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.newspaper-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.newspaper-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: #333333;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.logo-hologram {
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    animation: hologramFloat 4s ease-in-out infinite;
}

.hologram-container {
    position: relative;
    transform-style: preserve-3d;
}

.hologram-logo {
    position: relative;
    transform-style: preserve-3d;
    display: inline-block;
}

.logo-image {
    max-width: clamp(400px, 20vw, 600px);
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2)) 
            drop-shadow(0 8px 30px rgba(0, 0, 0, 0.1));
    animation: logoFloat 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 12px 40px rgba(0, 0, 0, 0.15));
}

.logo-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlowPulse 4s ease-in-out infinite;
    z-index: -1;
}

.hologram-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.scan-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4), transparent);
    animation: scanMove 3s linear infinite;
}

.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, rgba(255, 0, 255, 0.1) 49%, rgba(255, 0, 255, 0.1) 51%, transparent 52%);
    animation: glitch 0.3s infinite;
    opacity: 0;
}

@keyframes hologramFloat {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-20px) rotateX(5deg); }
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0);
        filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1)) 
                drop-shadow(0 8px 30px rgba(0, 0, 0, 0.05));
    }
    50% { 
        transform: translateY(-10px);
        filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 0.15)) 
                drop-shadow(0 12px 40px rgba(0, 0, 0, 0.08));
    }
}

@keyframes logoGlowPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes scanMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes glitch {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Revolutionary Hero */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    transform-style: preserve-3d;
}

/* 3D Text Animation */
.text-revolution {
    margin-bottom: 4rem;
    transform-style: preserve-3d;
}

.main-title-3d {
    font-size: clamp(8rem, 20vw, 16rem);
    font-weight: 900;
    margin-bottom: 4rem;
    margin-left: 3rem;
    perspective: 1000px;
    transform-style: preserve-3d;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Times New Roman', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.1em;
}

.title-char {
    display: inline-block;
    position: relative;
    transform-style: preserve-3d;
    animation: charFloat 3s ease-in-out infinite;
    margin: 0 0.2em;
    flex-shrink: 0;
}

.title-char:nth-child(1) { animation-delay: 0s; }
.title-char:nth-child(2) { animation-delay: 0.2s; }
.title-char:nth-child(3) { 
    animation-delay: 0.4s;
    color: #cc0000;
}
.title-char:nth-child(4) { animation-delay: 0.6s; }

.title-char::before {
    content: attr(data-char);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #000000, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateZ(20px);
    animation: charGlow 3s ease-in-out infinite alternate;
}

.title-char:nth-child(3)::before {
    background: linear-gradient(45deg, #8F0000, #C00303);
    border-radius: 8px;
    margin: -0.02em -0.1em;
    box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 0, 0.2);
    opacity: 0.9
}

.title-char::after {
    content: attr(data-char);
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(0, 0, 0, 0.2);
    transform: translateZ(-10px);
    animation: charShadow 3s ease-in-out infinite alternate;
}

.title-char:nth-child(3)::after {
    color: rgba(204, 0, 0, 0.3);
}

@keyframes charFloat {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-10px) rotateX(10deg); }
}

@keyframes charGlow {
    0% { 
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        transform: translateZ(20px);
    }
    100% { 
        text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
        transform: translateZ(30px);
    }
}

@keyframes charShadow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Revolutionary Tagline System */
.tagline-revolution {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-left: 3rem;
    margin-bottom: 5rem;
    transform-style: preserve-3d;
}

.tagline-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(100px) rotateX(90deg);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.tagline-3d.active {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.tagline-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    text-align: center;
    transform-style: preserve-3d;
    line-height: 1.6;
    font-family: 'Times New Roman', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
}

.tagline-front {
    color: #000000;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateZ(10px);
    animation: taglineGlow 3s ease-in-out infinite alternate;
}

.tagline-back {
    color: rgba(0, 0, 0, 0.2);
    transform: translateZ(-10px);
    animation: taglineShadow 3s ease-in-out infinite alternate;
}

@keyframes taglineGlow {
    0% { 
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transform: translateZ(10px);
    }
    100% { 
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 6px 30px rgba(0, 0, 0, 0.2);
        transform: translateZ(20px);
    }
}

@keyframes taglineShadow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Waiting List Form */
.waiting-list-form {
    text-align: center;
    margin-top: 3rem;
    margin-left: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.02);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.waiting-list-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    animation: formScan 3s linear infinite;
}

.waiting-list-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    font-family: 'Times New Roman', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.1em;
}

.waiting-list-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #333333;
    margin-bottom: 2rem;
    font-style: italic;
    font-family: 'Times New Roman', serif;
}

.email-signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid #000000;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    font-size: 1rem;
    font-family: 'Times New Roman', serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.email-input:focus {
    outline: none;
    border-color: #cc0000;
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.3);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: #666666;
    font-style: italic;
}

.btn-join-waiting {
    background: linear-gradient(45deg, #000000, #333333);
    border: 2px solid #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.btn-join-waiting:hover {
    background: linear-gradient(45deg, #cc0000, #ff0000);
    border-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.3);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Times New Roman', serif;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: rgba(0, 128, 0, 0.1);
    color: #006600;
    border: 1px solid #006600;
}

.form-message.error {
    background: rgba(204, 0, 0, 0.1);
    color: #cc0000;
    border: 1px solid #cc0000;
}

@keyframes formScan {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Futuristic Action Buttons */
.action-revolution {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.btn-futuristic {
    position: relative;
    padding: 1.5rem 3rem;
    border: 2px solid #000000;
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    font-family: 'Times New Roman', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.btn-futuristic:hover {
    background: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.btn-particles::before,
.btn-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #333;
    border-radius: 50%;
    animation: particleFloat 2s infinite;
}

.btn-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.btn-particles::after {
    top: 80%;
    right: 20%;
    animation-delay: 1s;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-futuristic:hover .btn-glow {
    opacity: 1;
    animation: glowSweep 1s ease-in-out;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

@keyframes glowSweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}


/* Futuristic Footer */
.footer-future {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 5rem;
    position: relative;
}

.footer-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
    animation: footerScan 5s linear infinite;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-content p {
    color: #000000;
    font-size: 1rem;
}

.social-hologram {
    display: flex;
    gap: 2rem;
}

.social-hologram-link {
    position: relative;
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.social-hologram-link:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-hologram-link:hover .social-glow {
    opacity: 1;
    animation: socialGlow 1s ease-in-out;
}

@keyframes footerScan {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes socialGlow {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        transform: rotate(0deg) !important;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .action-revolution {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-futuristic {
        width: 100%;
        max-width: 300px;
    }
    
    .features-hologram {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tagline-revolution {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .container {
        transform: rotate(0deg) !important;
        padding: 0 10px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .main-title-3d {
        font-size: 3rem;
        margin-left: 0 !important;
        justify-content: center !important;
        text-align: center;
        width: 100%;
    }
    
    .tagline-layer {
        font-size: 1.2rem;
        text-align: center !important;
    }
    
    .feature-hologram {
        padding: 2rem 1.5rem;
    }
    
    .waiting-list-form {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
        max-width: 100%;
    }
    
    .tagline-revolution {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
        text-align: center;
    }
    
    .hero {
        padding: 1rem;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(20deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.hero-content > * {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #000000, #333333);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    min-height: 40px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #333333, #000000);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #666666, #000000);
}

/* Ensure body can scroll */
html, body {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}