* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', 'Arial', sans-serif;
    background: #000;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 5px rgba(255,140,0,0.8));
}

.cursor::before {
    content: '🥄';
    animation: teaspoonFloat 2s ease-in-out infinite;
}

@keyframes teaspoonFloat {
    0%, 100% {
        transform: rotate(-10deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
}

.cursor-trail {
    position: fixed;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255,140,0,0.4) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
}

/* Animated Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,140,0,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,69,0,0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,215,0,0.1) 0%, transparent 50%),
        linear-gradient(45deg, #0a0a0a, #1a0a0a, #0a0a1a, #1a0a2a);
    background-size: 800% 800%, 600% 600%, 400% 400%, 300% 300%;
    animation:
        gradientShift 12s ease infinite,
        pulseGlow 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%, 100% 0%, 50% 100%, 0% 0%; }
    25% { background-position: 100% 50%, 0% 100%, 0% 0%, 100% 100%; }
    50% { background-position: 50% 100%, 100% 50%, 100% 0%, 50% 50%; }
    75% { background-position: 0% 0%, 50% 0%, 50% 50%, 0% 100%; }
    100% { background-position: 0% 50%, 100% 0%, 50% 100%, 0% 0%; }
}

@keyframes pulseGlow {
    0%, 100% {
        filter: brightness(1) contrast(1);
    }
    50% {
        filter: brightness(1.3) contrast(1.2);
    }
}

/* Particle Background */
.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255,140,0,0.8) 0%, rgba(255,69,0,0.4) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite linear;
    box-shadow: 0 0 20px rgba(255,140,0,0.6), 0 0 40px rgba(255,140,0,0.3);
}

.particle:nth-child(odd) {
    background: radial-gradient(circle, rgba(255,215,0,0.7) 0%, rgba(255,140,0,0.3) 40%, transparent 70%);
    box-shadow: 0 0 15px rgba(255,215,0,0.5), 0 0 30px rgba(255,215,0,0.2);
    animation-duration: 18s;
}

.particle:nth-child(3n) {
    background: radial-gradient(circle, rgba(255,69,0,0.9) 0%, rgba(255,140,0,0.4) 40%, transparent 70%);
    box-shadow: 0 0 25px rgba(255,69,0,0.7), 0 0 50px rgba(255,69,0,0.3);
    animation-duration: 12s;
}

@keyframes float {
    0% {
        transform: translateY(110vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    5% {
        opacity: 1;
        transform: translateY(100vh) rotate(18deg) scale(0.8);
    }
    15% {
        transform: translateY(80vh) rotate(72deg) scale(1);
    }
    50% {
        transform: translateY(50vh) rotate(180deg) scale(1.2);
        opacity: 1;
    }
    85% {
        transform: translateY(20vh) rotate(288deg) scale(1);
        opacity: 1;
    }
    95% {
        transform: translateY(-5vh) rotate(342deg) scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg) scale(0.3);
        opacity: 0;
    }
}

/* Large floating orbs */
.large-orb {
    position: absolute;
    background: radial-gradient(circle, rgba(255,140,0,0.4) 0%, rgba(255,69,0,0.2) 30%, transparent 60%);
    border-radius: 50%;
    animation: orbitFloat 25s infinite ease-in-out;
    box-shadow: 0 0 40px rgba(255,140,0,0.4), 0 0 80px rgba(255,140,0,0.2);
    pointer-events: none;
}

@keyframes orbitFloat {
    0%, 100% {
        transform: translateX(-100px) translateY(-100px) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateX(100px) translateY(-200px) scale(1.5);
        opacity: 0.6;
    }
    50% {
        transform: translateX(200px) translateY(100px) scale(1.2);
        opacity: 0.4;
    }
    75% {
        transform: translateX(-50px) translateY(200px) scale(0.8);
        opacity: 0.5;
    }
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Aruma Logo */
.logo {
    max-width: 400px;
    width: 90%;
    height: auto;
    animation: logoFloat 4s ease-in-out infinite, logoGlow 3s ease-in-out infinite alternate, logoPulse 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255,140,0,0.5));
    transition: transform 0.3s ease;
    transform-origin: center;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 30px rgba(255,140,0,0.8));
    animation-play-state: paused;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255,140,0,0.5));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(255,140,0,0.9)) drop-shadow(0 0 60px rgba(255,69,0,0.4));
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Countdown */
#countdown {
    margin-top: 50px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.countdown-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.small-countdown {
    transform: scale(0.7);
    opacity: 0.9;
    margin-bottom: -20px;
}

.small-countdown .countdown-label {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
    color: #ffaa00;
}

.small-countdown .countdown-numbers {
    gap: 8px !important;
}

.small-countdown .countdown-item {
    min-width: 50px !important;
    padding: 8px !important;
    background: rgba(255,170,0,0.1) !important;
    border: 1px solid rgba(255,170,0,0.3) !important;
}

.small-countdown .countdown-number {
    font-size: 1.5rem !important;
}

.small-countdown .countdown-unit {
    font-size: 0.7rem !important;
}

/* Different colors for different small countdowns */
.small-countdown:first-child .countdown-label {
    color: #00ccff;
}

.small-countdown:first-child .countdown-item {
    background: rgba(0,204,255,0.1) !important;
    border: 1px solid rgba(0,204,255,0.3) !important;
}

.main-countdown {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255,140,0,0.7);
    animation: countdownPulse 2s ease-in-out infinite alternate;
}

@keyframes countdownPulse {
    0% {
        text-shadow: 0 0 20px rgba(255,140,0,0.7);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 30px rgba(255,140,0,1) 0 0 40px rgba(255,69,0,0.5);
        transform: scale(1.02);
    }
}

.countdown-label {
    font-size: 1.2rem;
    color: #ff8c00;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: labelFlicker 4s ease-in-out infinite;
}

@keyframes labelFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.countdown-link {
    transition: all 0.3s ease !important;
    border-radius: 10px;
    padding: 10px;
}

.countdown-link:hover {
    background: rgba(255,140,0,0.1);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255,140,0,0.3);
}

.countdown-numbers {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,140,0,0.1);
    border: 2px solid rgba(255,140,0,0.3);
    border-radius: 10px;
    padding: 15px;
    min-width: 80px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    background: rgba(255,140,0,0.2);
    border-color: rgba(255,140,0,0.6);
    transform: translateY(-5px);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff8c00;
}

.countdown-unit {
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Footer */
footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.blazing-swan-logo {
    max-width: 40px;
    height: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.blazing-swan-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.6));
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .hero {
        padding: 20px;
        min-height: 100vh;
        min-height: 100dvh; /* For better mobile viewport */
    }
    
    .logo {
        max-width: 280px;
        margin-bottom: 20px;
    }
    
    #countdown {
        margin-top: 20px;
        padding: 0 10px;
        gap: 20px;
    }
    
    .main-countdown {
        font-size: 1.6rem !important;
    }
    
    .small-countdown {
        transform: scale(0.8);
        margin-bottom: -15px;
    }
    
    .countdown-label {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .countdown-numbers {
        gap: 8px;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 65px;
        padding: 12px 8px;
        background: rgba(255,140,0,0.15);
        border: 1px solid rgba(255,140,0,0.4);
    }
    
    .countdown-number {
        font-size: 1.6rem;
    }
    
    .countdown-unit {
        font-size: 0.75rem;
        margin-top: 3px;
    }
    
    .blazing-swan-logo {
        max-width: 40px;
        bottom: 15px;
    }
    
    /* Disable custom cursor on mobile */
    .cursor,
    .cursor-trail {
        display: none;
    }
    
    /* Reduce particles on mobile for performance but keep some visible */
    .particle:nth-child(n+6) {
        display: none;
    }
    
    .large-orb:nth-child(n+3) {
        display: none;
    }
    
    .particle {
        animation-duration: 20s !important;
    }
    
    /* Touch-friendly interactions */
    .logo:active {
        transform: scale(0.95);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 15px;
    }
    
    .logo {
        max-width: 240px;
    }
    
    #countdown {
        margin-top: 25px;
        gap: 15px;
    }
    
    .main-countdown {
        font-size: 1.4rem !important;
    }
    
    .small-countdown {
        transform: scale(0.75);
        margin-bottom: -10px;
    }
    
    .countdown-label {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .countdown-numbers {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 55px;
        padding: 10px 6px;
        margin: 2px;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-unit {
        font-size: 0.7rem;
    }
    
    .blazing-swan-logo {
        max-width: 40px;
        bottom: 10px;
    }
}

/* Portrait orientation specific */
@media (orientation: portrait) and (max-width: 768px) {
    .hero {
        justify-content: center;
        gap: 20px;
    }
    
    .logo {
        margin-top: 10vh;
    }
}

/* Landscape orientation on mobile */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        flex-direction: row;
        align-items: center;
        gap: 40px;
        padding: 20px;
    }
    
    .logo {
        max-width: 200px;
        margin-top: 0;
    }
    
    #countdown {
        margin-top: 0;
        gap: 10px;
    }
    
    .main-countdown {
        font-size: 1.2rem !important;
    }
    
    .small-countdown {
        transform: scale(0.6);
        margin-bottom: -5px;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 8px 6px;
    }
    
    .countdown-number {
        font-size: 1.2rem;
    }
    
    .blazing-swan-logo {
        max-width: 80px;
        bottom: 10px;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh; /* Better mobile viewport */
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a1a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.loading.fade-out {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.loading-content {
    text-align: center;
    animation: loadingFloat 3s ease-in-out infinite;
}

.loading-text {
    color: #ff8c00;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: loadingPulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255,140,0,0.5);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255,140,0,0.3);
    border-top: 3px solid #ff8c00;
    border-radius: 50%;
    animation: loadingSpin 1s linear infinite;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(255,140,0,0.3);
}

@keyframes loadingPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255,140,0,0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
        text-shadow: 0 0 30px rgba(255,140,0,0.8);
    }
}

@keyframes loadingSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loadingFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile loading adjustments */
@media (max-width: 768px) {
    .loading-text {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .loading-spinner {
        width: 50px;
        height: 50px;
    }
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-btn {
    background: rgba(255,140,0,0.2);
    border: 2px solid rgba(255,140,0,0.5);
    border-radius: 25px;
    padding: 12px 20px;
    color: #ff8c00;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    white-space: nowrap;
}

.nav-btn:hover {
    background: rgba(255,140,0,0.4);
    border-color: rgba(255,140,0,0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,140,0,0.3);
}

.nav-btn:active {
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 100%);
    margin: 5% auto;
    padding: 30px;
    border: 2px solid rgba(255,140,0,0.5);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 10px 30px rgba(255,140,0,0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #ff8c00;
    transition: color 0.3s ease;
}

.close:hover {
    color: #fff;
}

.modal h2 {
    color: #ff8c00;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8rem;
}

.modal h3 {
    color: #ffaa00;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.modal p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Donate Modal Specific */
.donate-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.donate-method {
    background: rgba(255,140,0,0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,140,0,0.3);
}

.copy-btn, .notify-btn {
    background: rgba(255,140,0,0.3);
    border: 1px solid rgba(255,140,0,0.6);
    border-radius: 8px;
    padding: 10px 20px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.copy-btn:hover, .notify-btn:hover {
    background: rgba(255,140,0,0.5);
    transform: translateY(-1px);
}

.thank-you {
    text-align: center;
    color: #ffaa00;
    font-style: italic;
    margin-top: 20px;
}

/* Shop Modal Specific */
.coming-soon {
    text-align: center;
    padding: 20px;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.coming-soon h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        top: 15px;
        left: 15px;
        gap: 10px;
    }
    
    .nav-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .modal h2 {
        font-size: 1.5rem;
    }
    
    .donate-options {
        gap: 15px;
    }
    
    .donate-method {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Audio Controls */
.audio-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.audio-btn {
    background: rgba(255,140,0,0.2);
    border: 2px solid rgba(255,140,0,0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #ff8c00;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.audio-btn:hover {
    background: rgba(255,140,0,0.3);
    border-color: rgba(255,140,0,0.8);
    transform: scale(1.1);
}

.audio-btn.active {
    background: rgba(255,140,0,0.4);
    border-color: #ff8c00;
    box-shadow: 0 0 20px rgba(255,140,0,0.4);
}

@media (max-width: 768px) {
    .audio-controls {
        top: 15px;
        right: 15px;
    }
    
    .audio-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Secret Easter Egg for 180° rotation */
.secret-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000 0%, #1a0a0a 50%, #0a0a1a 100%);
    z-index: 15000;
    animation: secretReveal 1s ease-in-out;
}

.secret-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes secretReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(180deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1) rotate(90deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.secret-content {
    text-align: center;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    max-width: 90%;
    animation: secretFloat 3s ease-in-out infinite;
}

@keyframes secretFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.secret-animation {
    position: relative;
}

.rotating-logo {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: logoSpin 2s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255,140,0,0.8));
}

@keyframes logoSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.2); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.secret-text h2 {
    color: #ff8c00;
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255,140,0,0.7);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px rgba(255,140,0,0.7);
    }
    100% {
        text-shadow: 0 0 30px rgba(255,140,0,1), 0 0 40px rgba(255,69,0,0.5);
    }
}

.secret-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.password-reveal {
    background: rgba(255,140,0,0.1);
    border: 2px solid rgba(255,140,0,0.5);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    animation: passwordPulse 3s ease-in-out infinite;
}

@keyframes passwordPulse {
    0%, 100% {
        border-color: rgba(255,140,0,0.5);
        box-shadow: 0 0 10px rgba(255,140,0,0.3);
    }
    50% {
        border-color: rgba(255,140,0,0.8);
        box-shadow: 0 0 20px rgba(255,140,0,0.6);
    }
}

.password-label {
    font-size: 1rem;
    color: #ffaa00;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.password-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff8c00;
    font-family: 'Courier New', monospace;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 8px;
    margin: 10px 0;
    letter-spacing: 2px;
    animation: passwordFlicker 4s ease-in-out infinite;
}

@keyframes passwordFlicker {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.7; }
}

.copy-secret-btn {
    background: rgba(255,140,0,0.3);
    border: 1px solid rgba(255,140,0,0.6);
    border-radius: 8px;
    padding: 10px 20px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.copy-secret-btn:hover {
    background: rgba(255,140,0,0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,140,0,0.4);
}

.secret-hint {
    font-size: 0.9rem;
    color: #ffaa00;
    font-style: italic;
    margin-top: 15px;
    animation: hintTwinkle 3s ease-in-out infinite;
}

@keyframes hintTwinkle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Mobile specific secret styles */
@media (max-width: 768px) {
    .secret-text h2 {
        font-size: 1.5rem;
    }
    
    .rotating-logo {
        font-size: 3rem;
    }
    
    .password-text {
        font-size: 1.2rem;
        padding: 8px;
    }
    
    .password-reveal {
        padding: 15px;
    }
}