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

:root {
    --base-color: #000000;
    --text-color: #f1f1f1;
    --accent-color: #6b46c1;
    --hover-color: #6b46c1;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}


/* Main Content */
.main {
    min-height: 100vh;
    padding: 120px 24px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Futuristic grid background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}



/* Animated Blob Background */
.blob-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    mix-blend-mode: screen;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.blob:nth-child(1) {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(107, 70, 193, 0.15), rgba(147, 51, 234, 0.1));
    top: 20%;
    left: 10%;
    animation: blob-move-1 20s infinite;
}

.blob:nth-child(2) {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.12));
    top: 60%;
    right: 15%;
    animation: blob-move-2 25s infinite;
    animation-delay: -5s;
}

.blob:nth-child(3) {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.08), rgba(52, 211, 153, 0.1));
    bottom: 20%;
    left: 60%;
    animation: blob-move-3 30s infinite;
    animation-delay: -10s;
}

.blob:nth-child(4) {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, rgba(244, 63, 94, 0.08), rgba(251, 113, 133, 0.1));
    top: 30%;
    right: 40%;
    animation: blob-move-4 18s infinite;
    animation-delay: -15s;
}

@keyframes blob-move-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    25% {
        transform: translate(30px, -50px) scale(1.1) rotate(90deg);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.9) rotate(180deg);
    }

    75% {
        transform: translate(50px, 30px) scale(1.05) rotate(270deg);
    }
}

@keyframes blob-move-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(-40px, 30px) scale(1.2) rotate(120deg);
    }

    66% {
        transform: translate(20px, -40px) scale(0.8) rotate(240deg);
    }
}

@keyframes blob-move-3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    20% {
        transform: translate(20px, 40px) scale(1.1) rotate(72deg);
    }

    40% {
        transform: translate(-30px, -20px) scale(0.9) rotate(144deg);
    }

    60% {
        transform: translate(40px, -30px) scale(1.05) rotate(216deg);
    }

    80% {
        transform: translate(-10px, 25px) scale(0.95) rotate(288deg);
    }
}

@keyframes blob-move-4 {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(-25px, -35px) scale(1.15) rotate(180deg);
    }
}

/* Content Card with Enhanced Glassmorphism */
.about-card {
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
    border-radius: 24px;
}




/* Content Card */
/* .about-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
} */

/* Typography */
.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.page-subtitle {
    font-size: 20px;
    color: #888888;
    margin-bottom: 48px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.content {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
}

.content p {
    margin-bottom: 24px;
}

.content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #ffffff;
    font-size: 19px;
}

/* Highlight elements */
.highlight {
    color: #ffffff;
    font-weight: 500;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #5829c5, var(--accent-color));
    opacity: 0.6;
    border-radius: 1px;
}

/* Feature tags */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Futuristic accent */
.accent-line {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #5829c5, var(--accent-color));
    border-radius: 1px;
}

.accent-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dot.active {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

/* Stats section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main {
        padding: 100px 16px 40px;
    }

    .about-card {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .content {
        font-size: 16px;
    }

    .features {
        justify-content: center;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .about-card {
        padding: 32px 20px;
    }

    .page-title {
        font-size: 28px;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}