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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f10;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.app-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.frame-13 {
    width: 100%;
    max-width: 393px;
    min-height: 100vh;
    background-color: #0f0f10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 44px;
    padding: 25px;
    position: relative;
}

.frame-1 {
    display: flex;
    flex-direction: column;
    gap: 17px;
    width: 100%;
    max-width: 343px;
    height: auto;
    min-height: 76px;
    align-items: stretch;
}

.title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

.subtitle {
    color: #acacac;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

.frame-12 {
    display: flex;
    flex-direction: column;
    gap: 43px;
    width: 100%;
    max-width: 343px;
    height: auto;
    min-height: 163px;
    align-items: stretch;
}

.frame-9 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    height: auto;
    min-height: 50px;
    align-items: stretch;
}

.truth-button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #41a0cc 0%, #317a9e 50%, #225671 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(156, 163, 175, 0.45);
    transition: transform 0.2s ease;
}

.truth-button:hover {
    transform: translateY(-2px);
}

.dare-button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #b84949 0%, #4e1c1c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(156, 163, 175, 0.45);
    transition: transform 0.2s ease;
}

.dare-button:hover {
    transform: translateY(-2px);
}

.button-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
}

.hit-me-button {
    width: 100%;
    max-width: 343px;
    height: 70px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(90deg, #ebc3d9 0%, #ca8ce8 50%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hit-me-button:hover {
    transform: translateY(-2px);
}

.hit-me-button .button-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
}

/* Prompt container styles */
.prompt-container {
    width: 100%;
    max-width: 343px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.prompt-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    width: 100%;
}

.prompt-text {
    color: #acacac;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: opacity 0.3s ease;
}

.another-button {
    width: 100%;
    max-width: 343px;
    height: 70px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(90deg, #ebc3d9 0%, #ca8ce8 50%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.another-button:hover {
    transform: translateY(-2px);
}

.another-button .button-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
}

/* Footer styles */
.footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    max-width: 393px;
    padding: 0 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    font-weight: 400;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Desktop enhancements */
@media (min-width: 768px) {
    body {
        padding: 0;
    }
    
    .frame-13 {
        width: 393px;
        height: 852px;
        max-width: none;
        min-height: auto;
    }
    
    .frame-1 {
        width: 343px;
        max-width: none;
        height: 76px;
        min-height: auto;
    }
    
    .title {
        font-size: 28px;
        line-height: 37px;
        height: 37px;
    }
    
    .subtitle {
        font-size: 16px;
        line-height: 22px;
        height: 22px;
    }
    
    .frame-12 {
        width: 343px;
        max-width: none;
        height: 163px;
        min-height: auto;
    }
    
    .frame-9 {
        flex-direction: row;
        width: 343px;
        max-width: none;
        height: 50px;
        min-height: auto;
    }
    
    .truth-button,
    .dare-button {
        flex: 1;
        width: auto;
    }
    
    .hit-me-button {
        width: 343px;
        max-width: none;
    }
    
    .prompt-container {
        width: 343px;
        max-width: none;
    }
    
    .prompt-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .prompt-text {
        font-size: 16px;
        line-height: 22px;
    }
    
    .another-button {
        width: 343px;
        max-width: none;
    }
    
    .footer {
        max-width: 393px;
        padding: 0;
    }
    
    .footer p {
        font-size: 12px;
    }
} 