:root {
    --primary: #FF2D55;
    --primary-glow: rgba(255, 45, 85, 0.5);
    --secondary: #0077FF;
    --background: #232527;
    /* Roblox Main Background */
    --card-bg: #1C1E22;
    /* Darker Card Background */
    --text-main: #ffffff;
    --text-muted: #888888;
    --border: #393b3d;
    --success: #00ffaa;
    --warning: #ffaa00;
}

/* ... existing code ... */

/* Buttons */
button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    /* minimal shadow for depth, but mostly flat */
    box-shadow: 0 4px 0 rgba(180, 20, 50, 0.5);
}

.btn-primary:active {
    transform: translateY(4px);
    box-shadow: none;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-verify {
    background-color: var(--success);
    color: #004422;
    box-shadow: 0 4px 0 rgba(0, 180, 100, 0.5);
    /* Removed bounce animation for cleaner look */
}

.btn-verify:active {
    transform: translateY(4px);
    box-shadow: none;
}

.btn-verify:hover {
    filter: brightness(1.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: radial-gradient(circle at 50% 50%, #1a1a24 0%, #0d0d11 100%); */
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}

/* Creating floating cubes or particles */
.cube {
    position: absolute;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--primary);
    animation: float 10s infinite ease-in-out;
}

.cube:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-duration: 12s;
    width: 30px;
    height: 30px;
    border-color: var(--secondary);
}

.cube:nth-child(2) {
    top: 80%;
    left: 80%;
    animation-duration: 15s;
    width: 60px;
    height: 60px;
}

.cube:nth-child(3) {
    top: 50%;
    left: 20%;
    animation-duration: 8s;
    width: 20px;
    height: 20px;
    border-color: var(--success);
}

.cube:nth-child(4) {
    top: 20%;
    left: 70%;
    animation-duration: 20s;
    width: 40px;
    height: 40px;
}

.cube:nth-child(5) {
    top: 90%;
    left: 30%;
    animation-duration: 14s;
    width: 25px;
    height: 25px;
    border-color: var(--secondary);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.5;
    }
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    z-index: 10;
}

header {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-icon {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--primary);
    filter: drop-shadow(0 0 20px var(--primary-glow));
    animation: floatLogo 6s ease-in-out infinite;
}

.logo-icon svg {
    width: 100px;
    height: 100px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.highlight {
    color: var(--primary);
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 255, 170, 0.1);
    border: 1px solid rgba(0, 255, 170, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 600;
}

.pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 0 rgba(0, 255, 170, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 170, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 255, 170, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 170, 0);
    }
}

/* Card Styles */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-align: center;
}

.card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

h1 {
    margin-bottom: 10px;
    font-weight: 700;
}

h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

.subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Inputs */
.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s;
}

.input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.15);
}

/* Platform Selector */
.platform-selector {
    margin-bottom: 30px;
    text-align: left;
}

.platform-selector label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.platforms {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.platform-option {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 5px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.platform-option i {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.platform-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.platform-option.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 0, 85, 0.3);
}

/* Robux Options */
.robux-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.robux-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
}

.robux-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.robux-card.selected {
    border-color: var(--primary);
    background: rgba(255, 0, 85, 0.1);
}

.robux-card .badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    font-size: 0.6rem;
    padding: 3px 8px;
    border-bottom-left-radius: 8px;
    font-weight: 700;
}

.robux-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* Console */
.console-window {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    margin-bottom: 20px;
    border: 1px solid #333;
    font-family: 'Courier New', monospace;
    height: 200px;
    display: flex;
    flex-direction: column;
}

.console-header {
    background: #222;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.console-title {
    font-size: 0.8rem;
    color: #888;
    margin-left: 10px;
}

.console-content {
    padding: 10px;
    color: #0f0;
    font-size: 0.8rem;
    overflow-y: auto;
    flex-grow: 1;
}

.log-line {
    margin-bottom: 2px;
    opacity: 0;
    animation: fadeIn 0.1s forwards;
}

.log-error {
    color: red;
}

.log-success {
    color: cyan;
}

/* Progress Bar */
.progress-container {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--primary);
}

/* Warnings */
.warning-text {
    color: var(--warning);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.highlight-text {
    color: var(--success);
    font-weight: 700;
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    text-align: center;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .card {
        padding: 20px;
    }

    .notification-container {
        right: 10px;
        left: 10px;
        bottom: 10px;
    }

    .notification-toast {
        min-width: unset;
        width: 100%;
    }
}

/* Notification Toast */
.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-toast {
    background: rgba(22, 22, 26, 0.95);
    border: 1px solid var(--border);
    border-left: 4px solid var(--success);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-in 4.5s forwards;
    backdrop-filter: blur(10px);
}

.notification-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

.notification-content {
    display: flex;
    flex-direction: column;
}

.notif-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.notif-message {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 600;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}