  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #fff;
            overflow-x: hidden;
        }

        .divine-glow {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .price-section {
            position: relative;
            padding: 40px 20px;
            min-height: 80vh;
            background: linear-gradient(45deg, rgba(255, 215, 0, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 35px;
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, #ffd700, #ff6b35, #8a2be2, #00ffff);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #ddd;
            opacity: 0.9;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .coins-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .coin-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-radius: 15px;
            padding: 18px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .coin-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 215, 0, 0.6);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
        }

        .coin-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            animation: rotate 6s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .coin-card:hover::before {
            opacity: 1;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        .coin-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .coin-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            border: 2px solid rgba(255, 215, 0, 0.5);
            background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(138, 43, 226, 0.2));
        }

        .coin-info h3 {
            font-size: 1.2rem;
            color: #ffd700;
            margin-bottom: 3px;
        }

        .coin-info p {
            color: #ccc;
            font-size: 0.8rem;
        }

        .price-display {
            text-align: center;
            margin: 15px 0;
            position: relative;
            z-index: 1;
        }

        .current-price {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 8px;
        }

        .price-change {
            font-size: 0.9rem;
            font-weight: bold;
            padding: 4px 10px;
            border-radius: 15px;
            display: inline-block;
        }

        .price-change.positive {
            color: #00ff88;
            background: rgba(0, 255, 136, 0.1);
        }

        .price-change.negative {
            color: #ff4757;
            background: rgba(255, 71, 87, 0.1);
        }

        .chart-container {
            height: 120px;
            margin: 15px 0;
            position: relative;
            z-index: 1;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            padding: 10px;
        }

        .chart-canvas {
            width: 100%;
            height: 100%;
            border-radius: 5px;
        }

        .coin-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 15px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            padding: 8px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .stat-label {
            font-size: 0.7rem;
            color: #aaa;
            margin-bottom: 3px;
        }

        .stat-value {
            font-size: 0.9rem;
            font-weight: bold;
            color: #ffd700;
        }

        .divine-particles {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #ffd700;
            border-radius: 50%;
            animation: sparkle 3s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }

        .memgod-crown {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.2rem;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @media (max-width: 768px) {
            .coins-grid {
                grid-template-columns: 1fr;
                padding: 0 10px;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .current-price {
                font-size: 2rem;
            }
        }