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

body {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.phone-container {
    width: 393px;
    height: 852px;
    background: #000000;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Main Content */
.main-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 393px;
    height: 852px;
}

/* Background Image */
.background-image {
    position: absolute;
    left: 0;
    top: 30px;
    width: 393px;
    height: 844px;
    background-image: url('images/cheyenne-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Info Card */
.info-card {
    position: absolute;
    left: -1.5px;
    top: 584px;
    width: 397.5px;
    height: 191px;
    background-image: url('images/card-bg-new.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    z-index: 5;
}

.card-text {
    position: absolute;
    left: 4.5px;
    top: 18px;
    width: 385px;
    height: 72px;
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.41em;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Create Button */
.create-button {
    position: absolute;
    left: 60.42px;
    top: 693px;
    width: 259.58px;
    height: 57px;
    border: none;
    cursor: pointer;
    z-index: 6;
    overflow: visible;
    background: transparent;
    background-image: url('images/button-gradient-new.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(218, 70, 234, 0.4));
    padding: 0;
    border-radius: 10px;
}

.create-button:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 30px rgba(218, 70, 234, 0.6));
}

.create-button:active {
    transform: scale(0.98);
}

.button-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.51px;
    color: #FFFFFF;
    text-transform: uppercase;
    z-index: 1;
    pointer-events: none;
    text-align: center;
    line-height: 1.41em;
}

/* Responsive adjustments */
@media (max-width: 420px) {
    .phone-container {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
    
    .main-content {
        width: 100%;
        height: 100%;
    }
    
    .background-image {
        width: 100%;
        height: calc(100% - 30px);
    }
    
    .info-card {
        width: calc(100% + 3px);
    }
    
    .card-text {
        width: calc(100% - 8px);
    }
    
    .create-button {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .create-button:hover {
        transform: translateX(-50%) scale(1.05);
    }
    
    .create-button:active {
        transform: translateX(-50%) scale(0.98);
    }
}
