        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/></svg>'), auto;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            min-height: 100vh;
            background-color: #000;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            padding: 4rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .name {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 10vw, 6rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
            letter-spacing: -0.03em;
            text-shadow: 0 0 10px rgba(255,255,255,0.3);
        }
        
        .title {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 400;
            color: #aaa;
            margin-bottom: 3rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
        }
        
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            color: #aaa;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            border: 1px solid #333;
        }
        
        .social-link:hover {
            color: #fff;
            border-color: #555;
            transform: translateY(-3px);
        }
        
        .social-icon {
            width: 18px;
            height: 18px;
            margin-right: 8px;
            transition: all 0.3s ease;
        }
        
        .money-button {
            background: none;
            border: none;
            font-size: 2.5rem;
            cursor: pointer;
            padding: 1rem 2rem;
            margin: 2rem 0;
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .money-button:hover {
            transform: scale(1.1);
        }
        
        .tagline {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 400;
            color: #fff;
            margin-top: 3rem;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 1rem 2rem;
            position: relative;
        }
        
        .tagline:hover {
            text-shadow: 0 0 10px rgba(255,255,255,0.5);
        }
        
        .countdown {
            position: fixed;
            bottom: 2rem;
            left: 0;
            width: 100%;
            text-align: center;
            font-size: 1.2rem;
            color: #aaa;
            z-index: 10;
            display: none;
        }
        
        .countdown-title {
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            color: #666;
        }
        
        .countdown-date {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #fff;
        }
        
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 2rem 1rem;
            }
            
            .social-links {
                gap: 1rem;
            }
            
            .social-link {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
            
            .countdown {
                font-size: 1rem;
            }
            
            .countdown-date {
                font-size: 1.2rem;
            }
        }