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

img {
    height: auto;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #090C13 0%, #0f1419 50%, #1a1f2e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero {
    position: relative;
    padding: .5rem 0;
}

.hero-content {
    display: flex;
    align-items: center;
    /* gap: 3rem; */
    min-height: 70px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0 0 auto;
    max-width: 350px;
}

.hero-image img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

/* Technology Links */
.tech-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.tech-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(252, 252, 252) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.0rem;
    font-weight: 500;
}

.tech-link:hover {
    color: #fa0fd3a9 !important;
    text-decoration: none;
}

.tech-link img {
    height: 28px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.tech-link:hover img {
    transform: scale(1.1);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

.shape1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00e6e6, #00b8b8);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 8px rgba(0, 230, 230, 0.4);
}

.shape2 {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #00ffff, #00cccc);
    transform: rotate(45deg);
    top: 60%;
    right: 15%;
    animation-delay: 1s;
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
}

.shape3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #20d6d6, #1a9999);
    border-radius: 30%;
    bottom: 40%;
    left: 40%;
    animation-delay: 1s;
    box-shadow: 0 0 10px rgba(32, 214, 214, 0.4);
}

.shape4 {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #003d3d, #002525);
    border-radius: 50%;
    top: 10%;
    right: 30%;
    animation-delay: 2.5s;
    box-shadow: 0 0 5px rgba(0, 200, 200, 0.08);
}

.shape5 {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #004848, #003030);
    transform: rotate(30deg);
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
    box-shadow: 0 0 9px rgba(0, 240, 240, 0.1);
}

.shape6 {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #005050, #003535);
    border-radius: 25%;
    top: 40%;
    left: 5%;
    animation-delay: 3s;
    box-shadow: 0 0 7px rgba(0, 220, 220, 0.09);
}


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

.main-content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0; /* Prevents flex overflow */
}

.title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00e6e6, #00ffff, #20d6d6, #40e0e0);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,230,230,0.3);
}

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

.subtitle {
    font-size: 1.5rem;
    color: rgba(0, 230, 230, 0.9);
    font-weight: 300;
}

.character-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: .5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(0, 230, 230, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.character-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(0, 230, 230, 0.4);
}

.character-name {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.character-tagline {
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    margin-bottom: 5px;
    font-style: italic;
}

.character-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-card {
    background: linear-gradient(135deg, #00b8b8, #006666);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 230, 230, 0.3);
    box-shadow: 0 10px 30px rgba(0,230,230,0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.feature-card:hover::before {
    animation: shine 0.6s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,230,230,0.2);
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00e6e6, #00ffff);
    color: #090C13;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,230,230,0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,230,230,0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.footer {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: rgba(0, 230, 230, 0.7);
    font-size: 0.9rem;
}

.footer a {
    color: rgba(0, 230, 230, 0.8);
}

.pulse {
    animation: pulse 2s infinite;
}

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

@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
    .hero-image {
        max-width: 300px;
    }
    .title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    .title {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    .character-card {
        padding: 2rem;
        margin: 2rem 0;
    }
    .character-name {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .hero-image {
        max-width: 250px;
    }
    .hero-image img {
        max-height: 200px;
    }
}
