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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #0f0c29;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    position: relative;
    perspective: 1500px;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: orbFloat 20s infinite ease-in-out;
    mix-blend-mode: screen;
}

.orb:nth-child(1) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #667eea, transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb:nth-child(2) {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #764ba2, transparent);
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.orb:nth-child(3) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #f093fb, transparent);
    bottom: 20%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.cube {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    transform-style: preserve-3d;
    animation: float 20s infinite ease-in-out;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3),
                inset 0 0 20px rgba(102, 126, 234, 0.2);
}

.cube:before,
.cube:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(118, 75, 162, 0.3);
    box-shadow: 0 0 20px rgba(118, 75, 162, 0.2);
}

.cube:before {
    transform: translateZ(-50px);
}

.cube:after {
    transform: translateZ(50px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-100px) rotateX(90deg) rotateY(90deg);
    }
    50% {
        transform: translateY(0) rotateX(180deg) rotateY(180deg);
    }
    75% {
        transform: translateY(100px) rotateX(270deg) rotateY(270deg);
    }
}

.cube:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.cube:nth-child(2) { top: 20%; left: 80%; animation-delay: 2s; }
.cube:nth-child(3) { top: 60%; left: 15%; animation-delay: 4s; }
.cube:nth-child(4) { top: 80%; left: 70%; animation-delay: 6s; }
.cube:nth-child(5) { top: 40%; left: 60%; animation-delay: 8s; }

/* Particles */
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: rise 15s infinite ease-in;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) scale(0);
        opacity: 0;
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

/* 3D Card */
.card {
    background: rgba(15, 12, 41, 0.5);
    backdrop-filter: blur(30px) saturate(180%);
    border-radius: 40px;
    padding: 60px 80px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 0 100px rgba(102, 126, 234, 0.1);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    max-width: 850px;
    animation: fadeIn 1s ease-in;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: cardGlow 8s infinite ease-in-out;
    pointer-events: none;
}

@keyframes cardGlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20%, 20%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                0 0 100px rgba(102, 126, 234, 0.4);
}

/* Logo/Avatar */
.avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    font-weight: 700;
    color: white;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5),
                0 0 0 10px rgba(102, 126, 234, 0.1),
                0 0 0 20px rgba(102, 126, 234, 0.05),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
    animation: pulse 3s infinite;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: rotateY(360deg) scale(1.1);
}

.avatar::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 300% 300%;
    animation: gradientRotate 3s ease infinite;
    z-index: -1;
    opacity: 0.7;
    filter: blur(10px);
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    }
}

h1 {
    color: white;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5),
                 0 0 40px rgba(118, 75, 162, 0.3),
                 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    background: linear-gradient(45deg, #fff, #667eea, #f093fb);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes textShine {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.status {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    margin: 30px 0;
    backdrop-filter: blur(15px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: glow 2s infinite;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.status::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 200%;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

.status:before {
    content: '🚀';
    margin-right: 10px;
    animation: rocket 1s infinite ease-in-out;
    display: inline-block;
}

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

.description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 25px 0;
    max-width: 600px;
}

.seo-section {
    color: rgba(255, 255, 255, 0.9);
    margin: 20px auto 10px;
    max-width: 650px;
    text-align: left;
}

.seo-section h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.seo-section p {
    line-height: 1.7;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
}

.highlights {
    list-style: disc;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: blur(10px);
}

.progress-bar {
    width: 0;
    height: 10px;
    background: linear-gradient(90deg, #fff, #f093fb);
    border-radius: 50px;
    animation: loading 3s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 75%; }
    100% { width: 0%; }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 40px 0;
    perspective: 1000px;
}

.social-link {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(102, 126, 234, 0.2);
}

.social-link::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 300% 300%;
    animation: gradientRotate 3s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.social-link:hover {
    transform: translateY(-10px) rotateY(360deg) scale(1.15);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5),
                0 0 30px rgba(118, 75, 162, 0.4);
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    text-align: center;
    font-size: 0.95rem;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    margin-top: 10px;
    backdrop-filter: blur(15px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

footer a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

footer a:hover::before {
    width: 300px;
    height: 300px;
}

footer a:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .card {
        padding: 40px 30px;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .description {
        font-size: 1rem;
    }

    .cube {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .avatar {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
}
