  
        @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Cinzel:wght@400;600&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }
        
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }
        
        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }
        
        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }
        
        .container {
            position: relative;
            z-index: 1;
        }
        
        .header {
            text-align: center;
            padding: 60px 20px 40px;
            color: #fff;
        }
        
        .header h1 {
            font-family: 'Cinzel', serif;
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            letter-spacing: 3px;
        }
        
        .header p {
            font-size: 1.3rem;
            opacity: 0.9;
            font-weight: 300;
            letter-spacing: 1px;
        }
        
        .main-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 50px;
            margin: 40px auto;
            max-width: 900px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
        }
        
        .question-section {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .question-section h2 {
            color: #ffd700;
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .question-input {
            width: 100%;
            padding: 18px 25px;
            font-size: 1.1rem;
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-family: 'Cormorant Garamond', serif;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .question-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .question-input:focus {
            outline: none;
            border-color: #ffd700;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
        }
        
        .btn-tefe {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #1a1a2e;
            border: none;
            padding: 18px 60px;
            font-size: 1.3rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            font-family: 'Cinzel', serif;
            letter-spacing: 2px;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
            margin-top: 30px;
        }
        
        .btn-tefe:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
        }
        
        .btn-tefe:active {
            transform: translateY(-1px);
        }
        
        .btn-tefe:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .result-section {
            display: none;
            margin-top: 50px;
            animation: fadeInUp 0.8s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .beyit-card {
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }
        
        .beyit-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 120px;
            color: rgba(255, 215, 0, 0.2);
            font-family: 'Cinzel', serif;
        }
        
        .beyit-text {
            font-size: 1.6rem;
            line-height: 2.2;
            color: #fff;
            text-align: center;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            font-weight: 400;
        }
        
        .beyit-author {
            text-align: right;
            color: #ffd700;
            font-size: 1.2rem;
            font-style: italic;
            margin-top: 25px;
            font-weight: 600;
        }
        
        .interpretation {
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid #ffd700;
            padding: 25px;
            margin-top: 30px;
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.15rem;
            line-height: 1.8;
        }
        
        .interpretation-title {
            color: #ffd700;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .btn-again {
            background: transparent;
            border: 2px solid #ffd700;
            color: #ffd700;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 30px;
            font-family: 'Cinzel', serif;
        }
        
        .btn-again:hover {
            background: #ffd700;
            color: #1a1a2e;
            transform: scale(1.05);
        }
        
        .loading {
            display: none;
            text-align: center;
            margin: 30px 0;
        }
        
        .loading-spinner {
            color: #ffd700;
            font-size: 2rem;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .mystical-icon {
            font-size: 3rem;
            color: #ffd700;
            margin-bottom: 20px;
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2rem;
            }
            
            .main-card {
                padding: 30px 20px;
                margin: 20px;
            }
            
            .beyit-text {
                font-size: 1.3rem;
            }
        }
    