:root {
    --bg-dark: #060709;
    --bg-card: rgba(22, 24, 28, 0.7);
    --primary: #0084ff;
    /* Official Roblox Blue */
    --secondary: #ff0055;
    --accent: #00f2ff;
    --glow: rgba(0, 132, 255, 0.5);
    --text-main: #ffffff;
    --text-dim: #8e9297;
    --success: #00e676;
    --card-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 50% 0%, rgba(0, 132, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 0, 85, 0.05) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.607 7.962l-5.143-5.143L30 22.257 10.536 2.819l-5.143 5.143L24.857 27.42 5.393 46.884l5.143 5.143L30 32.583l19.464 19.444 5.143-5.143L35.143 27.42l19.464-19.458z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 460px;
    padding: 20px;
    margin-top: 20px;
    z-index: 1;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 132, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 132, 255, 0.4);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

header {
    text-align: center;
    margin-bottom: 25px;
}

.logo {
    width: 65px;
    height: 65px;
    background: #000;
    border: 3px solid var(--primary);
    border-radius: 18px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px var(--glow);
    transform: rotate(-5deg);
}

.logo i {
    font-size: 32px;
    color: white;
}

h1 {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    filter: drop-shadow(0 0 10px rgba(0, 132, 255, 0.3));
}

.card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.input-label {
    display: block;
    color: var(--text-dim);
    font-size: 11px;
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input[type="text"] {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 16px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(0, 132, 255, 0.2);
}

.btn {
    width: 100%;
    background: linear-gradient(180deg, #009dff 0%, #0070ff 100%);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 18px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 4px solid #0056cc;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 10px 25px rgba(0, 132, 255, 0.4);
}

.btn:active {
    transform: translateY(1px);
    border-bottom-width: 1px;
    margin-top: 3px;
}

/* Robux Amounts Grid */
.amounts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.amount-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.amount-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: scale(1.02);
}

.amount-card.selected {
    background: rgba(0, 132, 255, 0.15);
    border: 2px solid var(--primary);
    box-shadow: 0 0 25px rgba(0, 132, 255, 0.2);
}

.robux-coin {
    width: 35px;
    height: 35px;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
}

.amount-val {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.amount-label {
    font-size: 10px;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Profile Card Styling */
.profile-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 15px;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.avatar-container {
    position: relative;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), #00ffcc);
    box-shadow: 0 0 20px rgba(0, 132, 255, 0.4);
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #1a1c20;
    border: 3px solid #1a1c20;
}

.profile-info h3 {
    font-size: 18px;
    font-weight: 800;
    color: white;
}

.profile-info p {
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
}

.user-id-badge {
    display: inline-block;
    background: rgba(0, 132, 255, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    color: var(--accent);
    border: 1px solid rgba(0, 242, 255, 0.3);
    margin-top: 5px;
    margin-bottom: 12px;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 4px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label {
    display: block;
    font-size: 8px;
    font-weight: 800;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 13px;
    font-weight: 900;
    color: white;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--card-border) !important;
    border-bottom: none !important;
    margin-top: 0 !important;
}

/* Generation Console */
#console {
    background: #000;
    border: 1px solid rgba(0, 132, 255, 0.3);
    padding: 15px;
    border-radius: 16px;
    font-family: 'Consolas', monospace;
    font-size: 12px;
    line-height: 1.6;
    color: #00ff00;
    box-shadow: inset 0 0 20px rgba(0, 255, 0, 0.05);
}

.console-line {
    margin-bottom: 4px;
    border-left: 2px solid var(--primary);
    padding-left: 8px;
}

/* Progress Bar */
.progress-container {
    background: rgba(255, 255, 255, 0.05);
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
    border: 1px solid var(--card-border);
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 15px var(--glow);
}

/* Recent Activity Ticker */
.recent-activity {
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.ticker-content {
    display: inline-block;
    animation: ticker 10s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-item {
    padding: 0 25px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
}

.ticker-item b {
    color: var(--primary);
}

.verify-icon {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 0, 85, 0.3));
}

.success-icon {
    font-size: 60px;
    color: var(--success);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.4));
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 22px;
    }

    .card {
        padding: 15px;
    }

    .amount-val {
        font-size: 20px;
    }
}