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

:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #00cec9;
    --dark-bg: #0f0f1e;
    --darker-bg: #0a0a16;
    --text-light: #f5f6fa;
    --text-muted: #b2bec3;
    --card-bg: rgba(255, 255, 255, 0.05);
    --gradient-1: linear-gradient(135deg, #6c5ce7, #a29bfe);
    --gradient-2: linear-gradient(135deg, #00cec9, #81ecec);
    --gradient-3: linear-gradient(135deg, #fd79a8, #fdcb6e);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.magic-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.magic-particles::before,
.magic-particles::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
    animation: float 20s infinite ease-in-out;
}

.magic-particles::after {
    animation-delay: -10s;
    background: radial-gradient(circle at 50% 50%, rgba(0, 206, 201, 0.1) 0%, transparent 50%);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-30px, -30px) rotate(10deg);
    }
    66% {
        transform: translate(30px, -30px) rotate(-10deg);
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 5px 15px rgba(108, 92, 231, 0.4));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 60px;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease forwards;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-reveal {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    animation: textReveal 1.5s ease forwards;
    opacity: 0;
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.name-main {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin: 0.5rem 0;
    animation: nameGlow 2s ease infinite alternate;
}

@keyframes nameGlow {
    from {
        filter: brightness(1);
    }
    to {
        filter: brightness(1.3);
    }
}

.name-aka {
    display: block;
    font-size: 2.5rem;
    color: var(--accent-color);
    animation: nameSlide 1s ease 0.5s forwards;
    opacity: 0;
    transform: translateX(-50px);
}

@keyframes nameSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

.hero-location {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 1.2s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeIn 1s ease 1.5s forwards;
    opacity: 0;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    margin-left: 4rem;
}

.floating-card {
    width: 350px;
    height: 400px;
    border-radius: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    75% {
        transform: translateY(20px) rotate(-2deg);
    }
}

.card-placeholder {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.magic-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.magic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.3);
}

.about {
    padding: 100px 2rem;
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.detail-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.family-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.family-info h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.magic-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-1);
    position: relative;
    animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    animation: rotateCircle 15s linear infinite reverse;
    padding: 2rem;
    box-shadow: inset 0 0 40px rgba(108, 92, 231, 0.3);
}

.circle-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: none;
    filter: drop-shadow(0 5px 20px rgba(108, 92, 231, 0.5));
}

.social {
    padding: 100px 2rem;
    position: relative;
    z-index: 1;
}

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

.social-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.3);
}

.social-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.yt-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.web-icon {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.insta-icon {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #f77737);
}

.fb-icon {
    background: linear-gradient(135deg, #4267b2, #3b5998);
}

.tg-icon {
    background: linear-gradient(135deg, #0088cc, #00a8dc);
}

.sd-yt-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.sd-insta-icon {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #f77737);
}

.sd-fb-icon {
    background: linear-gradient(135deg, #4267b2, #3b5998);
}

.social-icon:hover {
    transform: scale(1.1) rotate(10deg);
}

.social-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.social-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

.gallery {
    padding: 100px 2rem;
    position: relative;
    z-index: 1;
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    height: 300px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.3);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.4);
}

.services {
    padding: 100px 2rem;
    position: relative;
    z-index: 1;
}

.services-content {
    display: flex;
    justify-content: center;
}

.coming-soon-box {
    max-width: 900px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(0, 206, 201, 0.08));
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(108, 92, 231, 0.3);
}

.project-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.sd-logo {
    height: 100px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.coming-soon-box:hover .sd-logo {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 50px rgba(108, 92, 231, 0.5);
}

.coming-soon-box h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-name {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.project-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.project-features span {
    padding: 0.5rem 1.5rem;
    background: var(--gradient-1);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.launch-date {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.contact {
    padding: 100px 2rem;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-follow h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.follow-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.follow-link {
    padding: 1rem 1.8rem;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.1));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.follow-link i {
    font-size: 1.2rem;
}

.follow-link:hover {
    background: linear-gradient(135deg, #6c5ce7, #00cec9);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
}

.contact-visual {
    display: flex;
    justify-content: center;
}

.magic-shape {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.2));
    border-radius: 30px;
    animation: morphShape 8s ease-in-out infinite;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(108, 92, 231, 0.4);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: none;
    filter: grayscale(10%) brightness(1.05);
    transition: all 0.3s ease;
}

.magic-shape:hover .contact-photo {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30px;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 50%;
        transform: rotate(90deg);
    }
    50% {
        border-radius: 30px;
        transform: rotate(180deg);
    }
    75% {
        border-radius: 50%;
        transform: rotate(270deg);
    }
}

.footer {
    background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(108, 92, 231, 0.05) 100%);
    padding: 4rem 2rem 2rem;
    border-top: 2px solid rgba(108, 92, 231, 0.3);
    margin-top: 100px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.1));
    border-radius: 50%;
    color: var(--accent-color);
    border: 1px solid rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.footer-links a:hover {
    background: linear-gradient(135deg, #6c5ce7, #00cec9);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom p:first-child {
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 1rem 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .name-aka {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-visual {
        margin-left: 0;
        margin-top: 3rem;
    }

    .floating-card {
        width: 280px;
        height: 320px;
    }

    .nav-links {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-details {
        grid-template-columns: 1fr;
    }

    .magic-circle {
        width: 200px;
        height: 200px;
    }

    .circle-inner {
        width: 160px;
        height: 160px;
        font-size: 1.2rem;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .magic-shape {
        width: 200px;
        height: 200px;
    }
}