       /* Base Styles */
       body {
        font-family: 'PT Sans', sans-serif;
        background: linear-gradient(135deg, #1a0b2e 0%, #2d1b42 100%);
        color: #f0e6ff;
        margin: 0;
        padding: 0;
        line-height: 1.6;
        position: relative;
        overflow-x: hidden;
        min-height: 100vh;
    }

    /* Background Elements */
    .grid-pattern {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            linear-gradient(rgba(212, 20, 90, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(212, 20, 90, 0.05) 1px, transparent 1px);
        background-size: 20px 20px;
        z-index: -1;
        pointer-events: none;
    }

    .leaf {
        position: absolute;
        opacity: 0.15;
        z-index: 0;
        image-rendering: pixelated;
        pointer-events: none;
    }

    .particle {
        position: absolute;
        background-color: rgba(212, 20, 90, 0.3);
        border-radius: 50%;
        pointer-events: none;
    }

    /* Layout */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        position: relative;
        z-index: 1;
    }

    /* Header */
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px solid #D4145A;
    }

    .logo {
        font-family: 'Dosis', sans-serif;
        font-size: 36px;
        font-weight: 700;
        color: #D4145A;
        text-decoration: none;
        transition: all 0.3s;
    }

    .logo:hover {
        text-shadow: 0 0 10px rgba(212, 20, 90, 0.5);
    }

    nav a {
        color: #f0e6ff;
        text-decoration: none;
        margin-left: 20px;
        font-family: 'Dosis', sans-serif;
        font-size: 18px;
        transition: color 0.3s;
        position: relative;
    }

    nav a:hover {
        color: #D4145A;
    }

    nav a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #D4145A;
        transition: width 0.3s;
    }

    nav a:hover::after {
        width: 100%;
    }

    /* Hero Section */
    .hero {
        text-align: center;
        padding: 80px 0;
        position: relative;
    }

    h1 {
        font-family: 'Dosis', sans-serif;
        font-size: 54px;
        color: #D4145A;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .kyoko-image {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid #D4145A;
        margin: 30px auto;
        display: block;
        box-shadow: 0 5px 20px rgba(212, 20, 90, 0.3);
        transition: all 0.3s;
    }

    .kyoko-image:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(212, 20, 90, 0.5);
    }

    .description {
        max-width: 800px;
        margin: 0 auto 50px;
        font-size: 18px;
        position: relative;
        background: rgba(45, 27, 66, 0.5);
        padding: 30px;
        border-radius: 15px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(212, 20, 90, 0.2);
    }

    /* Features Section */
    .features {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 50px 0;
    }

    .feature-card {
        background: rgba(45, 27, 66, 0.7);
        border-radius: 10px;
        padding: 30px;
        width: 30%;
        min-width: 300px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        border-top: 3px solid #D4145A;
        transition: all 0.3s;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    }

    h2 {
        font-family: 'Dosis', sans-serif;
        color: #D4145A;
        font-size: 36px;
        margin-top: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    h3 {
        font-family: 'Dosis', sans-serif;
        color: #f0e6ff;
        font-size: 24px;
        margin-top: 0;
    }

    /* Pricing Section */
    .pricing {
        background: rgba(212, 20, 90, 0.1);
        padding: 50px;
        border-radius: 10px;
        text-align: center;
        margin: 50px 0;
        border: 1px solid #D4145A;
        backdrop-filter: blur(5px);
    }

    .price {
        font-family: 'Dosis', sans-serif;
        font-size: 48px;
        color: #D4145A;
        margin: 20px 0;
    }

    .monero-info {
        font-size: 14px;
        color: #aaa;
        margin-top: 20px;
    }

    .btn {
        display: inline-block;
        background: #D4145A;
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-family: 'Dosis', sans-serif;
        font-weight: 700;
        margin-top: 20px;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 10px rgba(212, 20, 90, 0.3);
    }

    .btn:hover {
        background: #b3104a;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(212, 20, 90, 0.4);
    }

    /* Family Section */
    .family {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 30px 0;
    }

    .family-member {
        margin: 10px 20px;
        text-align: center;
        transition: all 0.3s;
    }

    .family-member:hover {
        transform: translateY(-5px);
    }

    .family-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #D4145A;
        transition: all 0.3s;
    }

    .family-member:hover .family-avatar {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(212, 20, 90, 0.5);
    }

    .family-member p {
        margin-top: 10px;
        font-size: 14px;
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 30px 0;
        border-top: 1px solid #D4145A;
        margin-top: 50px;
        font-size: 14px;
        color: #aaa;
    }

    /* Animations */
    @keyframes float {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-20px) rotate(5deg);
        }
        100% {
            transform: translateY(0) rotate(0deg);
        }
    }

    @keyframes particle-float {
        0% {
            transform: translateY(0);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            transform: translateY(-100vh);
            opacity: 0;
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .feature-card {
            width: 100%;
        }
        
        h1 {
            font-size: 36px;
        }
        
        .kyoko-image {
            width: 200px;
            height: 200px;
        }
        
        nav a {
            margin-left: 10px;
            font-size: 16px;
        }
    }