body {
    background: #000;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

.ovrfl {
    background: radial-gradient(circle at 10% 20%, rgba(255, 0, 161, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.05) 0%, transparent 100%);
    min-height: 100vh;
}

.homesec1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../assets/hero-bg.png) !important;
    background-size: cover;
    background-position: center;
    padding-bottom: 80px;
    padding-top: 60px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
}

.portrait-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.user-portrait {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background-color: #000;
    transition: transform 0.4s ease;
}

.user-portrait:hover {
    transform: scale(1.02);
    border-color: rgba(255, 215, 0, 0.3);
}

.payment-selector {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.select-hding {
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.pm-btn {
    display: block;
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.card-btn {
    background: linear-gradient(135deg, #FF3D00 0%, #FF9100 100%);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.3);
}

.airtm-btn {
    background: linear-gradient(135deg, #00B0FF 0%, #0081CB 100%);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 176, 255, 0.3);
}

.crypto-btn {
    background: linear-gradient(135deg, #FF9100 0%, #FFD600 100%);
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 145, 0, 0.4);
}

.pm-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: brightness(1.2);
}

.pm-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.pm-btn:hover::after {
    left: 120%;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #ffd700;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.wallet-box {
    background: #000;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copy-btn {
    background: #ffd700;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.homes2bx {
    background: rgba(26, 26, 26, 0.7) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.15) !important;
    padding: 40px !important;
    border-radius: 30px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.homes1hding {
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.voice-intro {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.voice-intro:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    border-color: #ffd700;
}

.voice-icon {
    font-size: 20px;
    animation: wave 2s infinite;
}

.voice-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffd700;
}

@keyframes wave {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.music-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.music-toggle:hover {
    transform: rotate(15deg) scale(1.1);
    background: #ffd700;
    color: #000;
}

.music-icon {
    font-size: 24px;
}

.music-playing {
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.s36bxbtn {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%) !important;
    color: #000 !important;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.s36bxbtn:hover {
    transform: scale(1.05);
}

.modal-title {
    color: #ffd700;
    margin-bottom: 15px;
}

.modal-note {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 15px;
}

.wallet-addr {
    font-size: 14px;
    word-break: break-all;
}