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

:root {
    --primary-color: #00ffcc;
    --secondary-color: #00ccff;
    --dark-bg: #0c1a2d;
    --card-bg: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a3a5f 100%);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 1rem;
    z-index: 10;
}

.logo {
    margin-bottom: 2rem;
}

.logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1rem, 4vw, 1.5rem);
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    line-height: 1.4;
}

.concept {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .concept {
        flex-direction: row;
        align-items: center;
    }
}

.step-tracker, .casino-elements {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 204, 0.2);
}

.step-tracker {
    flex: 1;
}

.step-tracker h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
}

.step-visualization {
    height: 120px;
    position: relative;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .step-visualization {
        height: 200px;
    }
}

.step-path {
    position: absolute;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    top: 50%;
    transform: translateY(-50%);
}

.step-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px var(--primary-color);
    animation: step-pulse 2s infinite;
}

@media (min-width: 768px) {
    .step-marker {
        width: 30px;
        height: 30px;
    }
}

.step-marker:nth-child(2) { left: 25%; animation-delay: 0.5s; }
.step-marker:nth-child(3) { left: 50%; animation-delay: 1s; }
.step-marker:nth-child(4) { left: 75%; animation-delay: 1.5s; }

.fitness-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
}

.fitness-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    animation: icon-bounce 3s infinite;
}

@media (min-width: 768px) {
    .fitness-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.fitness-icon:nth-child(2) { animation-delay: 0.5s; }
.fitness-icon:nth-child(3) { animation-delay: 1s; }

.casino-elements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
}

@media (min-width: 768px) {
    .casino-elements {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.casino-element {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s;
    min-height: 140px;
}

@media (min-width: 768px) {
    .casino-element {
        padding: 1.5rem;
        min-height: 180px;
    }
}

.casino-element:hover {
    transform: translateY(-5px);
}

.element-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .element-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
}

.casino-element h3 {
    font-size: 0.9rem;
    color: #fff;
}

@media (min-width: 768px) {
    .casino-element h3 {
        font-size: 1rem;
    }
}

.dice {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: dice-rotate 4s infinite;
}

@media (min-width: 768px) {
    .dice {
        width: 60px;
        height: 60px;
        border-radius: 10px;
    }
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .dot {
        width: 10px;
        height: 10px;
    }
}

.dot:nth-child(1) { top: 8px; left: 8px; }
.dot:nth-child(2) { top: 8px; right: 8px; }
.dot:nth-child(3) { top: 21px; left: 21px; }
.dot:nth-child(4) { bottom: 8px; left: 8px; }
.dot:nth-child(5) { bottom: 8px; right: 8px; }

.chip {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 25px 25px, #ff3366, #cc0052);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: chip-rotate 6s infinite linear;
}

@media (min-width: 768px) {
    .chip {
        width: 70px;
        height: 70px;
    }
}

.chip:before {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    border: 2px dashed #ffd700;
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

.chip:after {
    content: '♠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #ffd700;
}

.slot-machine {
    width: 50px;
    height: 50px;
    background: linear-gradient(to bottom, #8b4513, #a0522d);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.reel {
    width: 14px;
    height: 40px;
    background: #fff;
    position: absolute;
    top: 5px;
    border-radius: 2px;
    animation: reel-spin 2s infinite;
}

.reel:nth-child(1) { left: 6px; }
.reel:nth-child(2) { left: 20px; animation-delay: 0.2s; }
.reel:nth-child(3) { left: 34px; animation-delay: 0.4s; }

.reel:before {
    content: '7';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: bold;
    color: #ff0000;
}

.cards {
    width: 50px;
    height: 50px;
    position: relative;
}

.card {
    width: 35px;
    height: 50px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ff0000;
}

.card:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 4;
    transform: rotate(-5deg);
    animation: card-float 4s infinite;
}

.card:nth-child(2) {
    top: 3px;
    left: 7px;
    z-index: 3;
    transform: rotate(0deg);
    animation: card-float 4s infinite 0.5s;
}

.card:nth-child(3) {
    top: 6px;
    left: 14px;
    z-index: 2;
    transform: rotate(5deg);
    animation: card-float 4s infinite 1s;
}

.coming-soon {
    margin: 3rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.3);
}

.coming-soon h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.progress-container {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 1.5rem auto;
    overflow: hidden;
    max-width: 500px;
}

.progress-bar {
    height: 100%;
    width: 65%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    animation: progress-pulse 3s ease-in-out infinite alternate;
}

.integration {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.integration-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .contact-section {
        flex-direction: row;
    }
}

.contact-email, .stay-in-touch {
    flex: 1;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 204, 0.2);
}

.contact-email h2, .stay-in-touch h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(0, 255, 204, 0.05);
}

.email-link:hover {
    background: rgba(0, 255, 204, 0.1);
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #0c1a2d;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.message.success {
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff3366;
    color: #ff3366;
}

.hp-field {
    display: none;
}

.cf-turnstile {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float-around 20s linear infinite;
    font-size: 1.5rem;
}

.footprint {
    color: var(--primary-color);
}

/* Animation Keyframes */
@keyframes step-pulse {
    0%, 100% { transform: translateY(-50%) scale(1); box-shadow: 0 0 15px var(--primary-color); }
    50% { transform: translateY(-50%) scale(1.2); box-shadow: 0 0 25px var(--primary-color); }
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes dice-rotate {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
}

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

@keyframes reel-spin {
    0% { transform: translateY(-30px); }
    100% { transform: translateY(30px); }
}

@keyframes card-float {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-8px); }
}

@keyframes progress-pulse {
    0% { width: 65%; opacity: 0.8; }
    100% { width: 68%; opacity: 1; }
}

@keyframes float-around {
    0% { transform: translate(0, 0) rotate(0); }
    25% { transform: translate(80px, 80px) rotate(90deg); }
    50% { transform: translate(40px, 160px) rotate(180deg); }
    75% { transform: translate(-40px, 80px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}