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

body {
    font-family: 'Fredoka', 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e5e5e5;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #64b5f6;
    margin-bottom: 10px;
    position: relative;
    text-shadow: 2px 2px 0px rgba(15, 52, 96, 0.8);
}

@keyframes rgbShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #b3d9ff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 0px rgba(15, 52, 96, 0.5);
}

@keyframes subtitleGlow {
    0%, 100% { 
        background-position: 0% 50%;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% { 
        background-position: 100% 50%;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(88, 101, 242, 0.1);
    color: #5865f2;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #5865f2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(88, 101, 242, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px rgba(88, 101, 242, 0.6);
        transform: scale(1.05);
    }
}

.trust-badge:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.trust-badge i {
    font-size: 1rem;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    background: rgba(15, 52, 96, 0.3);
    border: 2px solid #16213e;
    border-radius: 15px;
    padding: 15px 30px;
    color: #e5e5e5;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.tab-button:hover::before {
    left: 100%;
}

.tab-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tab-button:active {
    transform: translateY(0px) scale(0.98);
    transition: transform 0.1s ease;
}

.tab-button.active {
    border-color: currentColor;
    box-shadow: 0 0 20px currentColor;
}

/* Habbo Tab */
.tab-button[data-service="habbo"] {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
}

.tab-button[data-service="habbo"]:hover,
.tab-button[data-service="habbo"].active {
    background: rgba(255, 193, 7, 0.2);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

/* RuneScape Tab */
.tab-button[data-service="runescape"] {
    color: #ff5722;
    background: rgba(255, 87, 34, 0.1);
    border-color: #ff5722;
}

.tab-button[data-service="runescape"]:hover,
.tab-button[data-service="runescape"].active {
    background: rgba(255, 87, 34, 0.2);
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.3);
}

/* Steam Tab */
.tab-button[data-service="steam"] {
    color: #2196f3;
    background: rgba(33, 150, 243, 0.1);
    border-color: #2196f3;
}

.tab-button[data-service="steam"]:hover,
.tab-button[data-service="steam"].active {
    background: rgba(33, 150, 243, 0.2);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}

/* GitHub Tab */
.tab-button[data-service="github"] {
    color: #b3b3b3;
    background: rgba(179, 179, 179, 0.1);
    border-color: #b3b3b3;
}

.tab-button[data-service="github"]:hover,
.tab-button[data-service="github"].active {
    background: rgba(179, 179, 179, 0.2);
    box-shadow: 0 4px 8px rgba(179, 179, 179, 0.3);
}

/* Back to Home Button */
.back-to-home-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin-left: 20px;
    padding: 0;
}

.back-to-home-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.back-to-home-btn:hover::before {
    left: 100%;
}

.back-to-home-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.back-to-home-btn i {
    color: #00d4ff;
    font-size: 1.2rem;
    line-height: 1;
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
}

/* Content Area */
.content {
    flex: 1;
    margin-bottom: 40px;
}

/* Welcome Section */
.welcome-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
    animation: slideInFromBottom 0.6s ease forwards;
    opacity: 0;
}

.welcome-content {
    text-align: center;
    background: #1e1e3e;
    border: 2px solid #2e2e5e;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.welcome-content h2 {
    font-size: 2.2rem;
    color: #64b5f6;
    margin-bottom: 15px;
    font-weight: 600;
}

.welcome-content p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

.quick-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64b5f6;
    text-shadow: 2px 2px 0px rgba(15, 52, 96, 0.8);
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.info-card {
    background: #1e1e3e;
    border: 2px solid #2e2e5e;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.info-card:hover {
    transform: translateY(-5px);
    background: #2e2e5e;
    border-color: #5865f2;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4), 0 0 15px rgba(88, 101, 242, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.8;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #64b5f6;
    font-weight: 600;
}

.info-card p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    font-weight: 400;
}

.transfer-details {
    margin: 20px 0;
    text-align: left;
    flex-grow: 1;
}

.card-link {
    display: inline-block;
    background: #ff5722;
    color: #fff;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.3);
}

.card-link:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 87, 34, 0.4);
    color: #fff;
}

.sell-card {
    border-color: #4caf50;
    background: #1e1e3e;
}

.sell-card:hover {
    border-color: #66bb6a;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3), 0 0 15px rgba(76, 175, 80, 0.2);
}

.terms-card {
    border-color: #2196f3;
    background: #1e1e3e;
}

.terms-card:hover {
    border-color: #42a5f5;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3), 0 0 15px rgba(33, 150, 243, 0.2);
}

.transfer-card {
    border-color: #ff9800;
    background: #1e1e3e;
}

.transfer-card:hover {
    border-color: #ffb74d;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3), 0 0 15px rgba(255, 152, 0, 0.2);
}

.transfer-details {
    margin: 20px 0;
    text-align: left;
}

.transfer-item {
    background: rgba(255, 152, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid #ff9800;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.transfer-item:last-child {
    margin-bottom: 0;
}

.transfer-item strong {
    color: #64b5f6;
    display: block;
    margin-bottom: 5px;
}

.transfer-item {
    color: #e5e5e5;
    font-size: 0.9rem;
    font-weight: 400;
}

.service-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.service-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.service-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #64b5f6;
    font-weight: 600;
}

.service-header p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
}

/* Account Sections */
.account-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    color: #64b5f6;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Lock/Gate UI */
.lock-container {
    background: #1e1e3e;
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto 10px auto;
    max-width: 640px;
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.2);
}

.lock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 12px;
}

.lock-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lock-label {
    font-size: 0.9rem;
    color: #b3d9ff;
}

.lock-input-row {
    display: flex;
    gap: 10px;
}

.lock-input {
    flex: 1;
    background: rgba(30, 30, 62, 0.8);
    border: 2px solid #2e2e5e;
    color: #e5e5e5;
    padding: 10px 12px;
    border-radius: 10px;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lock-input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.lock-submit {
    background: #ffc107;
    color: #000000;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.lock-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.4);
}

.lock-message {
    min-height: 18px;
    font-size: 0.9rem;
}

.lock-message.error { color: #d32f2f; }
.lock-message.success { color: #388e3c; }

/* Account Grid */
.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Account Cards */
.account-card {
    background: #1e1e3e;
    border: 2px solid #2e2e5e;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: slideInFromBottom 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #666666, #888888);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.account-card:hover {
    background: #2e2e5e;
    border-color: #5865f2;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4), 0 0 15px rgba(88, 101, 242, 0.3);
}

.account-card:hover::before {
    opacity: 1;
}

/* Habbo Account Cards */
#habbo-content .account-card {
    border-color: #ffc107;
    background: rgba(26, 26, 46, 0.6);
}

#habbo-content .account-card::before {
    background: #ffc107;
    opacity: 0.5;
}

#habbo-content .account-card:hover {
    border-color: #ff8f00;
    box-shadow: 0 8px 16px rgba(255, 193, 7, 0.2);
}

#habbo-content .account-card:hover::before {
    opacity: 0.8;
}

#habbo-content .account-type {
    color: #ff8f00;
}

#habbo-content .credits {
    background: rgba(255, 143, 0, 0.1);
    color: #ffb74d;
    border: 1px solid rgba(255, 179, 77, 0.3);
}

/* RuneScape Account Cards */
#runescape-content .account-card {
    border-color: #ff5722;
    background: rgba(26, 26, 46, 0.6);
}

#runescape-content .account-card::before {
    background: #ff5722;
    opacity: 0.5;
}

#runescape-content .account-card:hover {
    border-color: #e64a19;
    box-shadow: 0 8px 16px rgba(255, 87, 34, 0.2);
}

#runescape-content .account-card:hover::before {
    opacity: 0.8;
}

#runescape-content .account-type {
    color: #e64a19;
}

#runescape-content .credits {
    background: rgba(230, 74, 25, 0.1);
    color: #ff7043;
    border: 1px solid rgba(255, 112, 67, 0.3);
}

/* Steam Account Cards */
#steam-content .account-card {
    border-color: #2196f3;
    background: rgba(26, 26, 46, 0.6);
}

#steam-content .account-card::before {
    background: #2196f3;
    opacity: 0.5;
}

#steam-content .account-card:hover {
    border-color: #1976d2;
    box-shadow: 0 8px 16px rgba(33, 150, 243, 0.2);
}

#steam-content .account-card:hover::before {
    opacity: 0.8;
}

#steam-content .account-type {
    color: #1976d2;
}

#steam-content .credits {
    background: rgba(25, 118, 210, 0.1);
    color: #42a5f5;
    border: 1px solid rgba(66, 165, 245, 0.3);
}

/* GitHub Account Cards */
#github-content .account-card {
    border-color: #757575;
    background: rgba(26, 26, 46, 0.6);
}

#github-content .account-card::before {
    background: #757575;
    opacity: 0.5;
}

#github-content .account-card:hover {
    border-color: #616161;
    box-shadow: 0 8px 16px rgba(117, 117, 117, 0.2);
}

#github-content .account-card:hover::before {
    opacity: 0.8;
}

#github-content .account-type {
    color: #616161;
}

#github-content .credits {
    background: rgba(117, 117, 117, 0.1);
    color: #b3b3b3;
    border: 1px solid rgba(179, 179, 179, 0.3);
}

/* Coming Soon Container */
.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    text-align: center;
    background: #1e1e3e;
    border: 3px dashed #2e2e5e;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.coming-soon-icon {
    font-size: 4rem;
    color: #e5e5e5;
    margin-bottom: 20px;
    opacity: 0.9;
}

.coming-soon-title {
    font-size: 2rem;
    color: #64b5f6;
    margin-bottom: 15px;
    font-weight: 600;
}

.coming-soon-text {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.5;
}

.account-card.special {
    border-color: rgba(255, 215, 0, 0.3);
}

.account-card.special::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    opacity: 0.7;
}

.account-card.premium {
    border-color: rgba(255, 215, 0, 0.7);
    background: rgba(255, 215, 0, 0.08);
    animation: premiumGlow 3s ease-in-out infinite, slideInFromBottom 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.account-card.premium::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

.account-card.premium:hover {
    border-color: rgba(255, 215, 0, 0.9);
    background: rgba(255, 215, 0, 0.12);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    transform: translateY(-8px);
}

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

@keyframes premiumGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    }
}

.account-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.8);
}

.account-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    justify-content: space-between;
}

.credits {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    background: rgba(33, 150, 243, 0.1);
    color: #42a5f5;
    border: 1px solid rgba(66, 165, 245, 0.3);
}

.price {
    background: #4caf50;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid #388e3c;
    margin-top: auto;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

.account-type {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: #e5e5e5;
    font-family: 'Fredoka', sans-serif;
}

.account-note {
    color: #e5e5e5;
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.9;
    font-style: italic;
}

.placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 60px 20px;
    text-align: center;
    color: #888888;
    transition: all 0.3s ease;
}

.placeholder:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 20px 0;
    border-top: 2px solid #16213e;
    background: transparent;
}

/* Sell to Us Section */
.sell-to-us-section {
    margin-bottom: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05), rgba(0, 200, 0, 0.03));
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    text-align: center;
}

.sell-to-us-title {
    font-size: 1.2rem;
    color: #00ff00;
    margin-bottom: 8px;
    font-weight: 600;
}

.sell-to-us-content {
    max-width: 500px;
    margin: 0 auto;
}

.sell-to-us-content p {
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 0.9rem;
}

.contact-info {
    background: rgba(0, 255, 0, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    margin-top: 8px;
}

.contact-info p {
    color: #cccccc;
    margin: 0;
    font-size: 0.85rem;
}

.contact-info strong {
    color: #00ff00;
    font-weight: 600;
}

/* Terms of Service */
.terms-section {
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.terms-content {
    max-width: 700px;
    margin: 0 auto;
}

.terms-content p {
    color: #cccccc;
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 0.85rem;
}

.terms-content strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-section h4 {
    display: none;
}

.contact-section p {
    display: none;
}

.username {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e5e5e5;
}

.contact-text {
    font-size: 0.9rem;
    color: #b3b3b3;
    opacity: 0.8;
}

.discord-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #e5e5e5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    padding: 12px 60px;
    border-radius: 25px;
    background: rgba(88, 101, 242, 0.1);
    border: 2px solid #5865f2;
    text-align: center;
    min-width: 300px;
    box-shadow: 0 4px 8px rgba(88, 101, 242, 0.2);
}

.discord-link:hover {
    background: #5865f2;
    border-color: #5865f2;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(88, 101, 242, 0.4);
    color: #ffffff;
}

.discord-link i {
    color: #5865f2;
    font-size: 1.3rem;
    margin: 0;
}

.discord-link .username {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
}

.discord-link .contact-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .service-tabs {
        gap: 10px;
    }
    
    .tab-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .account-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quick-stats {
        gap: 30px;
    }
    
    .welcome-section {
        gap: 40px;
    }
    
    .service-header h2 {
        font-size: 2rem;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .trust-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .tab-button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .tab-button span {
        display: none;
    }
    
    .service-header h2 {
        font-size: 1.8rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #16213e;
}

::-webkit-scrollbar-thumb {
    background: #5865f2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7c4dff;
}

/* Crypto Tooltip */
.crypto-tooltip {
    position: relative;
    color: #64b5f6;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset: 2px;
}

.crypto-tooltip::after {
    content: attr(title);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 62, 0.95);
    color: #e5e5e5;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(100, 181, 246, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.crypto-tooltip::before {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(30, 30, 62, 0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.crypto-tooltip:hover::after,
.crypto-tooltip:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}
