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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.logo-container {
    text-align: center;
    animation: fadeIn 1.5s ease-in;
}

.logo {
    width: 90vw;
    max-width: 600px;
    height: auto;
}

.rebel-text {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 0.15em;
    fill: #ffffff;
    text-anchor: middle;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.twenty-one-text {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.25em;
    fill: #f7931a;
    text-anchor: middle;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

@media (max-width: 768px) {
    .rebel-text {
        font-size: 36px;
    }
    
    .twenty-one-text {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .rebel-text {
        font-size: 28px;
    }
    
    .twenty-one-text {
        font-size: 18px;
    }
}
