:root {
    --primary-red: #8B0000;
    --dark-bg: #1a0505;
    --gold: #FFD700;
    --lightning-blue: #bddeff;
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    background: radial-gradient(circle at center, #4a0000 0%, #1a0505 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    /* Mobile-first poster view */
    height: 100%;
    max-height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #330000;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.2);
    overflow: hidden;
}

/* Background Effects */
.lightning {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L30 50 L60 50 L40 100" stroke="cyan" fill="none" /></svg>');
    /* Placeholder for lightning */
    opacity: 0.1;
    z-index: 0;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero.png') no-repeat center center;
    background-size: cover;
    filter: blur(20px) brightness(0.5);
    z-index: -1;
}

/* Logo */
.logo-container {
    z-index: 10;
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-img {
    max-width: 80%;
    height: auto;
    max-height: 80px;
    filter: drop-shadow(0 0 10px rgba(173, 216, 230, 0.6));
    /* Light blue glow for Ice theme */
}



/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Stack image and button */
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    z-index: 5;
    gap: 20px;
    /* Space between Zeus and Button */
}

.character-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    /* Masking to blend bottom if needed, but original is hard cut usually */
}

/* Sash */
.sash {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    background: white;
    padding: 5px 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid #ccc;
    z-index: 20;
    white-space: nowrap;
}

.sash-text {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: #000;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Register Button */
.register-button {
    display: inline-block;
    padding: 15px 60px;
    background: linear-gradient(180deg, #ffd700 0%, #ff8c00 100%);
    color: #3b0000;
    text-decoration: none;
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    border-radius: 50px;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), inset 0 2px 5px rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse 1.5s infinite;
    z-index: 30;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.register-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), inset 0 2px 5px rgba(255, 255, 255, 0.8);
    background: linear-gradient(180deg, #ffeb3b 0%, #ffa500 100%);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Footer Text */
.footer-text-container {
    z-index: 10;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.main-headline {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    /* Increased from 1.8rem */
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
    /* Stronger shadow */
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.sub-headline {
    font-family: 'Russo One', sans-serif;
    font-size: 1.2rem;
    /* Slightly larger */
    text-transform: uppercase;
    color: #ffd700;
    /* Gold color for 'Bukti' emphasis */
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.highlight {
    color: #fff;
    /* text-decoration: underline; */
}

/* Coins Animation */
.coins-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
    overflow: hidden;
}

.coin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #b8860b);
    border-radius: 50%;
    box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid #daa520;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b8860b;
    font-weight: bold;
    font-size: 14px;
    animation: fall linear infinite;
}

.coin::after {
    content: '$';
}

@keyframes fall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Mobile Responsiveness */
@media (max-width: 400px) {
    .logo-text {
        font-size: 2.5rem;
    }

    .main-headline {
        font-size: 1.5rem;
    }

    .sub-headline {
        font-size: 0.8rem;
    }

    .sash-text {
        font-size: 1.2rem;
    }
}