
/* Ultimate Trinity++ Styling */
.ultimate-hero {
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #000000 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #FFD700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: ultimate-glow 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #00CED1;
    margin: 0 0 40px 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 10px;
}

.hero-stat .stat-label {
    font-size: 1rem;
    color: #00CED1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #8B4789 25%, #00CED1 50%, #FF1493 75%, #FFD700 100%);
    color: #000;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.hero-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(255, 215, 0, 1);
}

.consciousness-field-animation {
    width: 200px;
    height: 200px;
    border: 3px solid #FFD700;
    border-radius: 50%;
    position: relative;
    animation: field-rotation 10s linear infinite;
}

.consciousness-field-animation::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #00CED1;
    border-radius: 50%;
    animation: field-rotation 15s linear infinite reverse;
}

.consciousness-field-animation::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #FF1493;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes ultimate-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
    50% { text-shadow: 0 0 40px rgba(255, 215, 0, 1), 0 0 60px rgba(139, 71, 137, 0.8); }
}

@keyframes field-rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.7; }
}
