
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&amp;family=Inter:wght@300;400;500;600&amp;display=swap');

        :root {
            --gold: #d4af37;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .own-jewel-section {
            font-family: 'Inter', system_ui, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0f2e 100%);
            color: #f3e8ff;
            position: relative;
            overflow: hidden;
            padding: 120px 20px 100px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .own-jewel-bg-particles {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        .own-jewel-particle {
            position: absolute;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatParticle 28s linear infinite;
            opacity: 0.15;
        }

        @keyframes floatParticle {
            0% { transform: translateY(100vh) rotate(0deg); }
            100% { transform: translateY(-100vh) rotate(360deg); }
        }

        .own-jewel-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .own-jewel-hero {
            text-align: center;
            margin-bottom: 80px;
        }

        .own-jewel-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold);
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid rgba(212, 175, 55, 0.3);
            margin-bottom: 20px;
        }

        .own-jewel-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 6vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #f3e8ff, #d4af37, #f3e8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .own-jewel-hero p {
            font-size: 1.25rem;
            max-width: 620px;
            margin: 0 auto;
            opacity: 0.85;
            line-height: 1.6;
        }

        .own-jewel-form-container {
            max-width: 480px;
            margin: 0 auto 80px;
            background: rgba(15, 23, 42, 0.75);
            border-radius: 24px;
            padding: 40px 36px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            backdrop-filter: blur(20px);
            box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
        }

        .own-jewel-form-title {
            text-align: center;
            font-size: 1.4rem;
            margin-bottom: 32px;
            color: var(--gold);
            font-weight: 500;
        }

        .own-jewel-date-group {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 16px;
            margin-bottom: 32px;
        }

        .own-jewel-input-wrapper label {
            display: block;
            font-size: 0.8rem;
            letter-spacing: 1px;
            color: #c4b5fd;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .own-jewel-select,
        .own-jewel-input {
            width: 100%;
            background: rgba(30, 30, 46, 0.8);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 12px;
            padding: 16px 18px;
            color: white;
            font-size: 1.1rem;
        }

        .own-jewel-button {
            width: 100%;
            padding: 18px;
            background: linear-gradient(90deg, #d4af37, #f5e8c7, #d4af37);
            color: #1a0f2e;
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: 1px;
            border: none;
            border-radius: 9999px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
        }

        .own-jewel-button::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 40%;
            height: 200%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.9), transparent);
            transform: skewX(-25deg);
            animation: shimmer 4s infinite;
        }

        @keyframes shimmer {
            100% { transform: translateX(400%); }
        }

        /* Result Card */
        .own-jewel-result {
            display: none;
            max-width: 620px;
            margin: 0 auto;
            background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1f 100%);
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.25);
            box-shadow: 0 30px 70px -20px rgb(0 0 0 / 0.6);
        }

        .own-jewel-result-header {
            padding: 40px 40px 24px;
            text-align: center;
        }

        .own-jewel-gem-icon {
            width: 140px;
            height: 140px;
            margin: 0 auto 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            background: radial-gradient(circle at 45% 35%, #ffffff 15%, #3b82f6 40%, #1e3a8a 70%);
            box-shadow: 0 0 80px -10px #60a5fa,
                        inset 0 15px 30px rgba(255,255,255,0.7),
                        0 25px 50px -15px rgba(0,0,0,0.8);
            animation: gemPulse 4s ease-in-out infinite;
            border: 6px solid rgba(255,255,255,0.2);
        }

        @keyframes gemPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.06); }
        }

        .own-jewel-zodiac {
            font-size: 1.05rem;
            color: var(--gold);
            letter-spacing: 4px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .own-jewel-gem-name {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: white;
            margin-bottom: 8px;
        }

        .own-jewel-result-body {
            padding: 0 32px 40px;
        }

        .own-jewel-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin: 32px 0;
        }

        .own-jewel-info-item {
            background: rgba(30, 30, 46, 0.85);
            padding: 16px 18px;
            border-radius: 14px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            text-align: center;
        }

        .own-jewel-info-label {
            font-size: 0.7rem;
            color: #94a3b8;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .own-jewel-info-value {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .own-jewel-description {
            line-height: 1.7;
            opacity: 0.9;
            margin: 24px 0 32px;
            font-size: 1.02rem;
            text-align: center;
        }

        .own-jewel-explore-btn {
            width: 100%;
            padding: 18px 24px;
            background: linear-gradient(90deg, #d4af37, #f5d36b);
            color: #1a0f2e;
            font-weight: 700;
            border: none;
            border-radius: 9999px;
            cursor: pointer;
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
        }

        .own-jewel-explore-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
        }

        @media (max-width: 768px) {
            .own-jewel-section { padding: 80px 16px 80px; }
            .own-jewel-date-group { grid-template-columns: 1fr; }
            .own-jewel-form-container { padding: 32px 24px; }
        }
