/* Font Awesome Icons */
@font-face {
    font-family: 'FontAwesome';
    src: url('data:font/woff2;base64,d09GMgABAAAAAA...') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Builder Extended';
    src: url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-circle-o-notch:before {
    content: "\f1ce";
}

.fa-check:before {
    content: "\f00c";
}

.fa-star:before {
    content: "\f005";
}

@-webkit-keyframes fa-spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); }
}

@keyframes fa-spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); }
}

/* Official Roblox Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Builder Extended', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    padding: 20px;
    color: #393b3d;
    position: relative;
}

/* Background blur and overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: -2
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.main-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
    z-index: 1;
    padding-bottom: 40px; /* Normal bottom padding */
}

.user-header {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-account-info {
    background: #f8f9fa;
    border: 1px solid #e1e3e4;
    border-radius: 8px;
    padding: 16px;
    min-width: 200px;
}

.account-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.account-label {
    color: #606162;
    font-weight: 600;
    font-size: 14px;
}

.account-value {
    color: #393b3d;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.account-value img {
    width: 14px;
    height: 14px;
}

/* Animation for balance when earning */
@keyframes balancePulse {
    0% { 
        color: #393b3d;
        transform: scale(1);
    }
    50% { 
        color: #ff6b00;
        transform: scale(1.1);
    }
    100% { 
        color: #393b3d;
        transform: scale(1);
    }
}

@keyframes completionPulse {
    0% { 
        opacity: 1;
        color: #606162;
    }
    50% { 
        opacity: 0.7;
        color: #ff6b00;
    }
    100% { 
        opacity: 1;
        color: #606162;
    }
}

.balance-earning {
    animation: balancePulse 1s infinite;
}

.completion-checking {
    animation: completionPulse 1.5s infinite;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-details h2 {
    color: #393b3d;
    font-weight: 700;
    font-size: 24px;
    margin: 0 0 4px 0;
    text-align: center;
}

.username {
    color: #00b2ff;
    font-weight: 600;
    font-size: 16px;
}

.offers-table-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 24px 24px 40px 24px;
    margin-bottom: 20px;
    max-height: 600px;
    overflow-y: auto;
    position: relative;
    z-index: 10;
}

/* Scrollbar styles for offers table */
.offers-table-container::-webkit-scrollbar {
    width: 8px;
}

.offers-table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.offers-table-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.offers-table-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.success-screen {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 100px auto;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.success-title {
    color: #393b3d;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 16px;
}

.success-message {
    color: #606162;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.btn-continue {
    background: #00b2ff;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-continue:hover {
    background: #0099e0;
    transform: translateY(-1px);
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

h1 {
    color: #393b3d;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.subtitle {
    color: #606162;
    font-size: 16px;
    font-weight: 400;
}

.username-section {
    background: #f2f4f5;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 30px;
    border: 1px solid #c6c8ca;
    transition: all 0.2s ease;
}

.username-section:focus-within {
    border-color: #00b2ff;
    box-shadow: 0 0 0 2px rgba(0, 178, 255, 0.2);
}

.input-group {
    display: flex;
    align-items: stretch;
}

.form__input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
    font-weight: 400;
    color: #393b3d;
    background: #ffffff;
    transition: all 0.2s ease;
    outline: none;
    font-family: inherit;
}

.form__input::placeholder {
    color: #a5a5a5;
}

.btn-next {
    background: #00b2ff;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.btn-next:hover:not(:disabled) {
    background: #0099e0;
}

.btn-next:disabled {
    background: #c6c8ca;
    cursor: not-allowed;
}

/* Roblox User Display Styles */
.roblox-user-display {
    display: none;
    text-align: center;
    margin-bottom: 30px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e3e4;
}

.roblox-username {
    font-size: 20px;
    font-weight: 700;
    color: #393b3d;
    margin-bottom: 4px;
}

.roblox-displayname {
    font-size: 16px;
    color: #606162;
    margin-bottom: 12px;
}

.roblox-user-id {
    font-size: 14px;
    color: #a5a5a5;
}

.username-verification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.verification-status {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
}

.verified {
    background: #02b757;
    color: white;
}

.not-found {
    background: #ff6767;
    color: white;
}

.checking {
    background: #ffb800;
    color: white;
}

/* User search suggestions */
.username-suggestions {
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #c6c8ca;
    border-top: none;
    border-radius: 0 0 8px 8px;
    position: absolute;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    top: 100%;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #e1e3e4;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover {
    background: #f8f9fa;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-username {
    font-weight: 600;
    color: #393b3d;
}

.input-container {
    position: relative;
    flex: 1;
}

.user-display {
    display: none;
    text-align: center;
    margin-bottom: 30px;
}

.user-display h2 {
    color: #393b3d;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.user-display .username {
    background: #00b2ff;
    color: white;
    padding: 8px 16px;
    border-radius: 16px;
    font-weight: 600;
    display: inline-block;
    font-size: 16px;
}

.offers-section {
    background: #f7f7f8;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(27,37,75,.12);
    overflow: hidden;
}

.offers-title {
    text-align: center;
    margin-bottom: 32px;
}

.offers-title h3 {
    color: #202227;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 8px;
}

.offers-title p {
    color: #6a6f81;
    font-size: 16px;
    line-height: 140%;
    max-width: 600px;
    margin: 0 auto;
}

/* Official Roblox Offers Grid */
.offers-grid {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.offers-grid::-webkit-scrollbar {
    width: 8px;
}

.offers-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.offers-grid::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.offers-grid::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.offer-card {
    background: white;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 24px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.offer-card:hover {
    background: #f8f9fa;
    border-top-color: #c0c0c0;
    border-bottom-color: #c0c0c0;
}

.offer-content {
    flex: 1;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.offer-name {
    color: #393b3d;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.3;
    text-align: center;
}

.offer-description {
    color: #606162;
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: center;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.offer-button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.offer-button {
    background: white;
    color: #333333;
    border: 2px solid #666666;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    min-width: 220px;
}

.time-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.time-button {
    background: #ffde67;
    color: #333333;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 6px;
    text-align: center;
    min-width: 60px;
    border: none;
    cursor: default;
}

.time-label {
    color: #606162;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    text-transform: lowercase;
}

.offer-button:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #444444;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.offer-button:disabled {
    background: #c6c8ca;
    cursor: not-allowed;
}

.offer-button.completed {
    background: #02b757;
}

.offer-button.loading {
    background: #ffde67;
    color: #333333;
    border-color: #ffde67;
}

.premium-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px;
    border: 1px solid #e1e3e4;
}

.premium-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.premium-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #393b3d;
    font-size: 18px;
}

.premium-logo {
    width: 28px;
    height: 28px;
    background: #ffb800;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #393b3d;
    font-weight: 700;
}

.premium-price {
    color: #393b3d;
    font-weight: 700;
    font-size: 16px;
}

.premium-description {
    color: #606162;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.premium-benefits {
    list-style: none;
    padding: 0;
}

.premium-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #393b3d;
    font-size: 14px;
}

.premium-benefits li::before {
    content: "•";
    color: #00b2ff;
    font-weight: bold;
    font-size: 16px;
}

/* Progress bar under offers */
.progress-section {
    position: relative;
    margin-top: 50px;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e1e3e4;
    border-radius: 8px;
    padding: 16px 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

/* Pulse animation for progress motivation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Progress bar pulse animation */
@keyframes progressPulse {
    0% { 
        background: #ffde67;
        box-shadow: 0 0 5px rgba(255, 222, 103, 0.5);
    }
    50% { 
        background: #ffd700;
        box-shadow: 0 0 15px rgba(255, 222, 103, 0.8);
    }
    100% { 
        background: #ffde67;
        box-shadow: 0 0 5px rgba(255, 222, 103, 0.5);
    }
}

.progress-motivation {
    color: #00b2ff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-title {
    color: #393b3d;
    font-weight: 600;
    font-size: 16px;
}

.progress-count {
    color: #00b2ff;
    font-weight: 600;
    font-size: 14px;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #e1e3e4;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #ffde67;
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0%;
    box-shadow: 0 0 8px rgba(255, 222, 103, 0.7);
}

.terms {
    text-align: center;
    margin-top: 24px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e3e4;
}

.terms p {
    color: #606162;
    font-size: 14px;
    line-height: 1.5;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e1e3e4;
    border-top: 2px solid #00b2ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success screen */
.success-screen {
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #02b757;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: white;
    animation: bounce 0.8s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.success-title {
    color: #393b3d;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.success-message {
    color: #606162;
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.btn-continue {
    background: #00b2ff;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-continue:hover {
    background: #0099e0;
    transform: translateY(-1px);
}

.robux-icon-small {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    vertical-align: middle;
    object-fit: contain;
}

/* Completed row styles */
.row-completed {
    background: #f0f8f4 !important;
    opacity: 0.8;
    pointer-events: none;
}

.row-completed .bonus-badge {
    background: #02b757 !important;
    color: white !important;
}

/* Loading row styles */
.row-loading {
    background: #f8f9fa !important;
    opacity: 0.7;
}

/* Floating notifications - larger and from different positions */
.floating-proof {
    position: fixed;
    background: white;
    border: 1px solid #e1e3e4;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    min-width: 280px;
    font-size: 16px;
}

.floating-proof.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-proof.fade-out {
    opacity: 0;
    transform: translateY(-40px) scale(0.9);
}

.proof-avatar {
    width: 48px;
    height: 48px;
    background: #00b2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.proof-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.proof-name {
    font-weight: 700;
    font-size: 16px;
    color: #393b3d;
}

.proof-location {
    font-size: 14px;
    color: #606162;
}

.proof-robux {
    font-weight: 700;
    font-size: 18px;
    color: #ff6b00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 24px 20px;
        margin: 10px;
    }
    
    .user-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        margin-bottom: 15px;
    }
    
    .user-account-info {
        min-width: auto;
    }
    
    .progress-section {
        width: 100%;
        padding: 12px 16px;
        margin-top: 30px;
    }
    
    .username-container {
        max-width: 100%;
        margin: 0;
        padding: 24px 16px;
    }
    
    /* Mobile offers table scrolling */
    .offers-table-container {
        max-height: none;
        padding: 16px 16px 32px 16px;
        margin-bottom: 30px;
        overflow: visible;
    }
    
    .offers-grid {
        max-height: none !important;
        overflow: visible !important;
        overflow-y: visible !important;
    }
    
    /* Mobile offer card improvements */
    .offer-card {
        flex-direction: row;
        padding: 16px;
        gap: 12px;
        min-height: 120px;
        align-items: center;
    }
    
    .offer-content {
        margin-right: 12px;
        margin-bottom: 0;
        flex: 1;
    }
    
    .offer-name {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .offer-description {
        font-size: 12px;
        margin-bottom: 8px;
        max-width: 100%;
        white-space: normal;
        line-height: 1.3;
    }
    
    .offer-button-container {
        flex-direction: row;
        gap: 8px;
        width: auto;
        flex-shrink: 0;
    }
    
    .offer-button {
        width: auto;
        min-width: 140px;
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .time-container {
        width: auto;
    }
    
    .time-button {
        width: auto;
        padding: 6px 10px;
        font-size: 11px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .offers-title h3 {
        font-size: 24px;
    }
    
    .robux-table th,
    .robux-table td {
        padding: 12px 8px;
        font-size: 14px;
    }
    
    .price-column {
        font-size: 16px;
    }
    
    .robux-amount {
        font-size: 14px;
    }
    
    .premium-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .floating-proof {
        min-width: 240px;
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .proof-avatar {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .progress-section {
        width: 100%;
        padding: 10px 12px;
        margin-top: 15px;
    }
    
    .jandel-image-container {
        margin-bottom: -15px;
    }
    
    /* Extra small screen offers table */
    .offers-table-container {
        max-height: none;
        padding: 12px 12px 28px 12px;
        margin-bottom: 25px;
        overflow: visible;
    }
    
    .offers-grid {
        max-height: none;
        overflow: visible;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .form__input {
        border-radius: 8px 8px 0 0;
    }
    
    .btn-next {
        width: 100%;
        border-radius: 0 0 8px 8px;
    }
    
    /* Extra small screen offer improvements */
    .offer-card {
        padding: 12px;
        gap: 8px;
        min-height: 100px;
    }
    
    .offer-name {
        font-size: 14px;
    }
    
    .offer-description {
        font-size: 11px;
    }
    
    .offer-button {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 120px;
    }
    
    .time-button {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .robux-table th:nth-child(2),
    .robux-table th:nth-child(3) {
        font-size: 12px;
    }
    
    .robux-table td {
        padding: 12px 6px;
    }
    
    .robux-amount {
        flex-direction: column;
        gap: 4px;
        font-size: 12px;
    }
    
    .bonus-badge {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .floating-proof {
        min-width: 200px;
        padding: 12px 16px;
        font-size: 12px;
    }
    
    .username-container {
        padding: 20px 12px;
    }
    
    .proof-avatar {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Limited Time Counter Styles */
.limited-time-counter {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 20px;
    background: #ffde67;
    color: #393b3d;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(255, 222, 103, 0.3);
    border-radius: 12px;
}

.counter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.counter-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.limited-badge {
    background: rgba(57, 59, 61, 0.1);
    color: #393b3d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.counter-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #393b3d;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(57, 59, 61, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.time-value {
    font-size: 24px;
    font-weight: 800;
    color: #393b3d;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.time-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(57, 59, 61, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-separator {
    font-size: 20px;
    font-weight: 700;
    color: rgba(57, 59, 61, 0.7);
    margin: 0 4px;
}

/* Mobile styles for counter */
@media (max-width: 768px) {
    .limited-time-counter {
        padding: 12px 16px;
    }
    
    .counter-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .counter-title {
        font-size: 16px;
    }
    
    .countdown-timer {
        padding: 8px 12px;
        gap: 6px;
    }
    
    .time-value {
        font-size: 20px;
    }
    
    .time-label {
        font-size: 9px;
    }
    
    .time-separator {
        font-size: 16px;
        margin: 0 2px;
    }
}

@media (max-width: 480px) {
    .limited-time-counter {
        padding: 10px 12px;
    }
    
    .counter-title {
        font-size: 14px;
    }
    
    .countdown-timer {
        padding: 6px 10px;
        gap: 4px;
    }
    
    .time-value {
        font-size: 18px;
    }
    
    .time-label {
        font-size: 8px;
    }
    
    .time-separator {
        font-size: 14px;
        margin: 0 1px;
    }
}

/* Jandel Image */
.jandel-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: -50px; /* 50px overlap on desktop */
    z-index: 1;
}

.jandel-image {
    max-width: 50%; /* Reduced by 100% (from 100% to 50%) */
    height: auto;
    display: block;
}

/* Mobile adjustments for Jandel image */
@media (max-width: 768px) {
    .jandel-image-container {
        margin-bottom: -20px; /* Less overlap on mobile due to smaller height */
    }
    
    .jandel-image {
        max-width: 60%; /* Slightly larger on mobile for better visibility */
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: #f8f9fa;
    padding: 20px 24px;
    border-bottom: 1px solid #e1e3e4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #393b3d;
    font-size: 18px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #606162;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.modal-close:hover {
    background: #e1e3e4;
}

.modal-body {
    padding: 32px 24px;
    text-align: center;
}

.user-info-modal {
    margin-bottom: 24px;
}

.user-name {
    font-size: 16px;
    color: #606162;
    font-weight: 500;
}

.robux-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.robux-icon-large {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.robux-amount {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b00;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-confirm {
    background: #00b2ff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-confirm:hover {
    background: #0099e6;
}

.btn-close {
    background: #f8f9fa;
    color: #606162;
    border: 1px solid #e1e3e4;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-close:hover {
    background: #e1e3e4;
}

/* Success Modal */
.success-modal .modal-header {
    background: #02b757;
    color: white;
}

.success-modal .modal-header h2 {
    color: white;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.success-message {
    font-size: 16px;
    color: #393b3d;
    font-weight: 500;
    line-height: 1.5;
}

/* Username Section Styles */
.username-section {
    background: #f2f4f5;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 30px;
    border: 1px solid #c6c8ca;
    transition: all 0.2s ease;
}

.username-container {
    padding: 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.jandel-giveaway-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.user-info-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e1e3e4;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    margin-bottom: 20px;
}

.user-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.user-username {
    font-size: 16px;
    font-weight: 700;
    color: #393b3d;
}

.user-id {
    font-size: 12px;
    color: #a5a5a5;
}

.user-status {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}

.user-status.verified {
    background: #e8f5e8;
    color: #02b757;
    border: 1px solid #02b757;
}

.jandel-giveaway-header h2 {
    color: #393b3d;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.username-container p {
    color: #606162;
    font-size: 16px;
    margin-bottom: 24px;
}

.username-container .input-container {
    margin-bottom: 24px;
}

.username-container input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #c6c8ca;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #393b3d;
    background: #ffffff;
    transition: all 0.2s ease;
    outline: none;
    font-family: inherit;
}

.username-container input:focus {
    border-color: #606162;
    box-shadow: 0 0 0 2px rgba(96, 97, 98, 0.2);
}

.username-container input::placeholder {
    color: #a5a5a5;
}

.next-btn {
    background: #00b2ff;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.next-btn:hover:not(:disabled) {
    background: #0099e0;
}

.next-btn:disabled {
    background: #c6c8ca;
    cursor: not-allowed;
}

/* Roblox User Display Styles */
.roblox-user-display {
    display: none;
    text-align: center;
    margin-bottom: 30px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e3e4;
}

.user-info-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.user-details-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.username-display {
    font-size: 20px;
    font-weight: 700;
    color: #393b3d;
}

.displayname-display {
    font-size: 16px;
    color: #606162;
}

.userid-display {
    font-size: 14px;
    color: #a5a5a5;
}

/* User Display Styles */
.user-display {
    display: none;
    margin-bottom: 30px;
}

.user-display .user-header {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Offers Section Styles */
.offers-section {
    background: #f7f7f8;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(27,37,75,.12);
    overflow: hidden;
}

/* Username Suggestions Styles */
.username-suggestions {
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #c6c8ca;
    border-top: none;
    border-radius: 0 0 8px 8px;
    position: absolute;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    top: 100%;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #e1e3e4;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover {
    background: #f8f9fa;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-username {
    font-weight: 600;
    color: #393b3d;
}

.input-container {
    position: relative;
    flex: 1;
}

/* Verification Status Styles */
.verification-status {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
}

.verified {
    background: #02b757;
    color: white;
}

.not-found {
    background: #ff6767;
    color: white;
}

.checking {
    background: #ffb800;
    color: white;
}

#success-robux-amount {
    font-weight: 700;
    color: #ff6b00;
}

/* Add to Account Button */
.add-to-account-btn {
    background: #02b757;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.add-to-account-btn:hover {
    background: #029e4a;
}

.add-to-account-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Add to Account Button in Table */
.add-to-account-btn-table {
    background: #ffde67;
    color: #333333;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    min-width: 80px;
}

.add-to-account-btn-table:hover {
    background: #ffd700;
}

/* Load More button styles */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    padding: 0 20px;
}

.load-more-button {
    background: linear-gradient(135deg, #ffde67, #ffd700);
    border: 2px solid #393b3d;
    border-radius: 12px;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(255, 222, 103, 0.3);
}

.load-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 222, 103, 0.4);
    background: linear-gradient(135deg, #ffd700, #ffde67);
}

.load-more-button:active {
    transform: translateY(0);
}

.load-more-text {
    font-weight: 700;
    font-size: 16px;
    color: #393b3d;
}

.load-more-count {
    font-weight: 500;
    font-size: 12px;
    color: rgba(57, 59, 61, 0.7);
}

/* Mobile styles for load more button */
@media (max-width: 768px) {
    .load-more-container {
        margin-top: 20px;
        padding: 0 16px;
    }
    
    .load-more-button {
        padding: 14px 24px;
        min-width: 180px;
    }
    
    .load-more-text {
        font-size: 14px;
    }
    
    .load-more-count {
        font-size: 11px;
    }
}
