        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
            background-color: #000000;
            color: #e0e0e0;
            min-height: 100vh;
            line-height: 1.5;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
            z-index: -1;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.7rem 1.8rem;
            margin-top: 1.5rem;
            background: rgba(10, 10, 10, 0.75);
            backdrop-filter: blur(14px);
            border-radius: 60px;
            position: sticky;
            top: 20px;
            z-index: 100;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            cursor: pointer;
        }

        .logo-img {
            height: 42px;
            width: auto;
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.3rem;
            background: linear-gradient(135deg, #ffffff, #aaaaaa);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        nav {
            display: flex;
            gap: 2.5rem;
        }

        nav a {
            text-decoration: none;
            color: #ccc;
            font-weight: 500;
            font-size: 1rem;
            transition: 0.2s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0%;
            height: 2px;
            background: #fff;
            transition: width 0.3s;
        }

        nav a:hover { color: white; }
        nav a:hover::after { width: 100%; }

        .header-contact-btn {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.25);
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            text-decoration: none;
            color: #eee;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(4px);
            cursor: pointer;
        }

        /* Glow effect on hover */
        .header-contact-btn:hover {
            background: rgba(255,255,255,0.15);
            color: white;
            border-color: rgba(255,255,255,0.5);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255,255,255,0.1);
        }

        /* Shine animation on hover */
        .header-contact-btn::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.5s ease;
            pointer-events: none;
        }

        .header-contact-btn:hover::before {
            left: 100%;
        }

        /* Icon animation */
        .header-contact-btn i {
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .header-contact-btn:hover i {
            transform: translateX(4px) scale(1.1);
        }

        /* Optional: pulse effect on click (active state) */
        .header-contact-btn:active {
            transform: translateY(0px);
            transition: 0.05s;
        }
        .hero-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 85vh;
            position: relative;
            margin: 2rem 0;
        }

        .content {
            max-width: 50%;
            z-index: 20;
        }

        .tag-box {
            width: 14rem;
            height: 2.8rem;
            border-radius: 50px;
            background: linear-gradient(90deg, #444, #888, #ccc, #444);
            background-size: 200%;
            animation: gradientMove 3s linear infinite;
            position: relative;
            margin-bottom: 1.5rem;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }

        .tag {
            position: absolute;
            inset: 3px;
            background: #000000;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 500;
            color: #ccc;
        }

        .content h1 {
            font-size: 3.8rem;
            font-weight: 800;
            margin: 1rem 0;
            line-height: 1.2;
            background: linear-gradient(130deg, #ffffff, #a0a0a0);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .description {
            font-size: 1.1rem;
            color: #b0b0b0;
            max-width: 90%;
            margin-bottom: 2rem;
        }

        .buttons {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }

        .btn-get-started, .btn-signing-main {
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }

        .btn-get-started {
            border: 1px solid #666;
            color: #eee;
            background: rgba(255,255,255,0.05);
        }
        .btn-get-started:hover {
            background: #2a2a2a;
            border-color: #aaa;
        }

        .btn-signing-main {
            background: #2c2c2c;
            color: white;
        }
        .btn-signing-main:hover {
            background: #444;
            transform: translateY(-2px);
        }

/* Image Container - Fade In Animation on Page Load */
.image-container {
    position: absolute;
    right: 4%;
    top: 24%;
    width: 42%;
    height: 500px;
    z-index: 15;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease-out;
    will-change: opacity;
    
    /* Fade in animation */
    opacity: 0;
    animation: fadeInImage 1s ease forwards;
    animation-delay: 0.3s;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 25px rgba(255,255,255,0.4));
}

/* Fade In Keyframes */
@keyframes fadeInImage {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
        /* ----- PROJECTS SECTION ----- */
        .projects-section {
            padding: 5rem 0 4rem;
        }

        .projects-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .projects-badge {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(8px);
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.75rem;
            letter-spacing: 2px;
            color: #aaa;
            border: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .gradient-text {
            background: linear-gradient(135deg, #fff, #aaa);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .section-subtitle {
            color: #999;
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .premium-card {
            position: relative;
            background: rgba(12, 12, 16, 0.219);
            backdrop-filter: blur(12px);
            border-radius: 32px;
            border: 1px solid rgba(255,255,255,0.08);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            transform-style: preserve-3d;
            transform: perspective(800px) rotateX(0deg) rotateY(0deg);
        }

        .premium-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.2) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }

        .premium-card:hover::before { opacity: 1; }

        .card-bg-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 100% 0%, rgba(100,100,120,0.15), transparent);
            opacity: 0;
            transition: opacity 0.5s;
            pointer-events: none;
            z-index: 0;
        }

        .premium-card:hover {
            transform: translateY(-12px);
            border-color: rgba(255,255,255,0.25);
            box-shadow: 0 25px 40px -15px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
            transform: perspective(800px) rotateX(8deg) rotateY(10deg) translateY(-12px);
        }
        .premium-card:first-child:hover {
            transform: perspective(800px) rotateX(6deg) rotateY(12deg) translateY(-12px);
        }
        .premium-card:last-child:hover {
            transform: perspective(800px) rotateX(10deg) rotateY(-8deg) translateY(-12px);
        }
        .premium-card:hover .card-bg-overlay { opacity: 1; }

        .card-content {
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .project-icon-wrapper {
            position: relative;
            width: 70px;
            height: 70px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.08);
            backdrop-filter: blur(4px);
        }

        .project-icon {
            font-size: 2.2rem;
            color: #fff;
            transition: all 0.3s;
        }

        .premium-card:hover .project-icon {
            transform: scale(1.05);
            text-shadow: 0 0 12px rgba(255,255,255,0.5);
        }

        .card-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            background: linear-gradient(135deg, #fff, #ccc);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .card-content p {
            color: #b0b0b0;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(255,255,255,0.05);
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .project-link i { transition: transform 0.2s; }
        .project-link:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.3);
        }
        .project-link:hover i { transform: translateX(5px); }

        .tech-stack {
            display: flex;
            gap: 0.5rem;
        }
        .tech-stack span {
            background: rgba(255,255,255,0.05);
            padding: 0.3rem 0.8rem;
            border-radius: 40px;
            font-size: 0.7rem;
            color: #aaa;
            letter-spacing: 0.5px;
        }

        /* ========== PRICING SECTION ========== */
        .pricing-section {
            padding: 4rem 0 5rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: rgba(10, 10, 10, 0.7);
            backdrop-filter: blur(12px);
            border-radius: 32px;
            padding: 2rem;
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255,255,255,0.2);
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.5);
        }

        .pricing-card.popular {
            background: rgba(20, 20, 28, 0.801);
        }

        .pricing-card.popular::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at var(--price-mouse-x, 50%) var(--price-mouse-y, 50%), rgba(255,255,255,0.25) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }

        .pricing-card.popular:hover::before {
            opacity: 1;
        }

        .popular-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #00aaff, #0088ff);
            padding: 0.25rem 0.8rem;
            border-radius: 40px;
            font-size: 0.7rem;
            color: #fff;
            font-weight: 600;
            border: none;
            z-index: 2;
        }

        .pricing-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .pricing-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #fff, #ccc);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .price {
            font-size: 2.2rem;
            font-weight: 800;
            margin: 1rem 0;
            color: #fff;
        }

        .price span {
            font-size: 0.9rem;
            font-weight: 400;
            color: #aaa;
        }

        .pricing-features {
            list-style: none;
            margin: 1.5rem 0 0 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.6rem 0;
            color: #bbb;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .pricing-features li i {
            width: 20px;
            color: #fff;
            font-size: 0.9rem;
        }

        .pricing-features li i.fa-check {
            color: #00ff88;
        }

        /* Custom Domain Radio Buttons */
        .custom-domain-options {
            margin: 0.5rem 0 0.8rem 0;
            background: rgba(20, 20, 28, 0.6);
            border-radius: 16px;
            padding: 1rem;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.2s ease;
        }

        .custom-domain-options.error-highlight {
            border-color: #ff4444;
            background: rgba(255, 68, 68, 0.15);
            box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
        }

        .domain-option {
            margin-bottom: 0.8rem;
        }

        .domain-option:last-child {
            margin-bottom: 0;
        }

        .radio-label {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            cursor: pointer;
            font-size: 0.95rem;
            color: #eeecec;
            width: 100%;
            user-select: none;
        }

        .radio-label input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .custom-radio-ui {
            width: 18px;
            height: 18px;
            background: rgba(30, 30, 38, 0.9);
            border: 1.5px solid rgba(255,255,255,0.4);
            border-radius: 50%;
            display: inline-block;
            position: relative;
            transition: all 0.2s ease;
        }

        .radio-label input:checked + .custom-radio-ui {
            border-color: #ffffff;
            background: #ffffff;
        }

        .radio-label input:checked + .custom-radio-ui::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: #000000;
            border-radius: 50%;
        }

        .radio-label:hover .custom-radio-ui {
            border-color: #fff;
            background: rgba(255,255,255,0.15);
        }

        .domain-price-badge {
            background: #2a2a35;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #ffaa66;
            margin-left: 0.5rem;
        }

        .domain-price-badge-free {
            background: #2a3a2a;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #66ff88;
            margin-left: 0.5rem;
        }

        .domain-error {
            color: #ff5555;
            font-size: 0.75rem;
            margin-top: 0.5rem;
            min-height: 1.2rem;
            text-align: center;
        }

        @keyframes errorShake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .custom-domain-options.error-highlight {
            animation: errorShake 0.3s ease;
        }
        .checkbox-label {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            cursor: pointer;
            font-size: 0.95rem;
            color: #bbb;
            width: 100%;
            user-select: none;
        }

        .checkbox-label input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .custom-checkbox-ui {
            width: 20px;
            height: 20px;
            background: rgba(20, 20, 28, 0.9);
            border: 1.5px solid rgba(255,255,255,0.5);
            border-radius: 5px;
            display: inline-block;
            position: relative;
            transition: all 0.2s ease;
        }

        .checkbox-label input:checked + .custom-checkbox-ui {
            background: #ffffff;
            border-color: #ffffff;
        }

        .checkbox-label input:checked + .custom-checkbox-ui::after {
            content: "✓";
            position: absolute;
            font-size: 14px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #000000;
            font-weight: bold;
        }

        .checkbox-label:hover .custom-checkbox-ui {
            border-color: #fff;
            background: rgba(255,255,255,0.1);
        }

        .dashed-divider {
            margin: 1rem 0 1rem 0;
            border-top: 1px dashed rgba(255,255,255,0.5);
            width: 100%;
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin: 0.75rem 0 1.5rem 0;
            font-size: 1.1rem;
            letter-spacing: 0.3px;
            padding: 0.4rem 0;
        }

        .total-label {
            font-weight: 800;
            color: #f0f0f0;
            font-size: 1.95rem;
        }

        .total-amount {
            font-weight: 800;
            background: linear-gradient(135deg, #fff, #ddd);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-size: 2.2rem;
            transition: all 0.2s ease;
            display: inline-block;
        }

        .select-plan-btn {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 0.8rem 1.8rem;
            border-radius: 40px;
            text-decoration: none;
            color: #fff;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            width: 100%;
            justify-content: center;
            margin-top: 0.2rem;
        }

        .select-plan-btn:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.35);
            transform: translateY(-2px);
        }

        /* Contact section */
        .contact-section { padding: 4rem 0 5rem; }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 2rem;
            margin-top: 2rem;
        }
        .contact-info, .contact-form {
            background: rgba(10, 10, 10, 0.425);
            backdrop-filter: blur(12px);
            border-radius: 28px;
            padding: 2rem;
            border: 1px solid rgba(255,255,255,0.08);
        }
        .contact-info h3 {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            color: #fff;
        }
        .info-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.6rem;
        }
        .info-item i {
            font-size: 1.4rem;
            color: #ccc;
            width: 2rem;
        }
        .info-content h4 { font-weight: 600; color: #ddd; }
        .info-content p, .info-content a { color: #aaa; text-decoration: none; }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label {
            display: block;
            margin-bottom: 0.4rem;
            font-size: 0.9rem;
            color: #ccc;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            background: #0a0a0a;
            border: 1px solid #333;
            border-radius: 20px;
            color: white;
            font-family: inherit;
        }
        .form-control:focus { outline: none; border-color: #888; }
        .submit-btn {
            background: #1f1f1f;
            border: none;
            padding: 0.8rem;
            border-radius: 40px;
            width: 100%;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        .submit-btn:hover { background: #3a3a3a; }
        .success-message {
            display: none;
            margin-top: 1rem;
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 20px;
            text-align: center;
            color: #ccc;
        }
        .footer {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 2rem;
            font-size: 0.85rem;
            color: #777;
        }

        @media (max-width: 1000px) {
            .image-container { display: none; }
            .hero-wrapper { justify-content: center; }
            .content { max-width: 80%; text-align: center; }
            .description { max-width: 100%; }
            .buttons { justify-content: center; }
            .tag-box { margin-left: auto; margin-right: auto; }
        }
        
        @media (max-width: 700px) {
            nav { display: none; }
            .main-header { justify-content: space-between; padding: 0.7rem 1.2rem; }
            .header-contact-btn { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
            .content h1 { font-size: 2.5rem; }
            .content { max-width: 95%; }
            .description { font-size: 1rem; }
            .btn-get-started, .btn-signing-main { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
        }
        
        @media (max-width: 992px) {
            .hero-wrapper { flex-direction: column; text-align: center; }
            .content { max-width: 90%; margin: 0 auto; }
            .description { max-width: 100%; }
            .buttons { justify-content: center; }
        }
        
        @media (max-width: 768px) {
            .logo-text { font-size: 1rem; }
            .logo-img { height: 35px; }
            .content h1 { font-size: 2.2rem; }
            .contact-grid { grid-template-columns: 1fr; }
            .projects-grid { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 2rem; }
            .container { padding: 0 1rem; }
            .main-header { margin-top: 1rem; }
        }
        
        @media (max-width: 480px) {
            .content h1 { font-size: 1.8rem; }
            .tag-box { width: 11rem; height: 2.4rem; }
            .tag { font-size: 0.8rem; }
            .header-contact-btn { padding: 0.4rem 1rem; font-size: 0.75rem; }
            .btn-get-started, .btn-signing-main { padding: 0.5rem 1rem; font-size: 0.8rem; }
            .price { font-size: 1.8rem; }
            .pricing-card h3 { font-size: 1.3rem; }
        }
         /* Scroll-triggered center logo */
        .scroll-center-logo {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            z-index: 5;
            pointer-events: none;  /* allows clicking through */
            opacity: 0;
            transition: opacity 0.3s ease;
            filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
        }

        .scroll-center-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Visible when scrolling past threshold */
        .scroll-center-logo.visible {
            opacity: 0.3;  /* adjust as you like: 0.1 to 0.5 for subtle effect */
        }
                /* Custom Scrollbar - Dark Theme */
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #0a0a0a;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #444, #888, #aaa);
            border-radius: 10px;
            transition: background 0.3s ease;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #666, #aaa, #ccc);
        }

        /* For Firefox */
        * {
            scrollbar-width: thin;
            scrollbar-color: #888 #0a0a0a;
        }

        /* Text Selection Color */
        ::selection {
            background: rgba(255, 255, 255, 0.25);
            color: #ffffff;
            text-shadow: 0 0 5px rgba(255,255,255,0.3);
        }

        ::-moz-selection {
            background: rgba(255, 255, 255, 0.25);
            color: #ffffff;
            text-shadow: 0 0 5px rgba(255,255,255,0.3);
        }
        /* Social Links Section - Minimal Distance to Footer */
        .social-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.0rem;
            margin: 0;
            padding: 0 0 0.5rem 0;
        }

        .social-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #aaa;
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            backdrop-filter: blur(4px);
        }

        .social-icon i {
            font-size: 1rem;
            color: rgb(0, 0, 0);
            transition: all 0.3s ease;
        }

        /* Hover Effects */
        .social-icon:hover {
            transform: translateY(-3px) scale(1.05);
            border-color: transparent;
        }

        /* Facebook */
        .social-icon:hover#social-fb {
            background: #1877f2;
            box-shadow: 0 6px 15px rgba(24, 119, 242, 0.3);
        }
        .social-icon:hover#social-fb i {
            color: #ffffff;
        }

        /* YouTube */
        .social-icon:hover#social-yt {
            background: #ff0000;
            box-shadow: 0 6px 15px rgba(255, 0, 0, 0.3);
        }
        .social-icon:hover#social-yt i {
            color: #ffffff;
        }
        /* WhatsApp */
        .social-icon:hover#social-wa {
            background: #25D366;
            box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
        }
        .social-icon:hover#social-wa i {
            color: #ffffff;
        }
        .social-icon:hover#social-dc i {
            color: #ffffff;
        }

        /* Animation */
        .social-icon {
            animation: fadeInUp 0.6s ease backwards;
        }
        .social-icon:nth-child(1) { animation-delay: 0.1s; }
        .social-icon:nth-child(2) { animation-delay: 0.2s; }
        .social-icon:nth-child(3) { animation-delay: 0.3s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Update footer spacing */
        .footer {
            text-align: center;
            padding: 1rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 0;
            font-size: 0.85rem;
            color: #777;
        }