        /* Login Container Styles */
        .login-container {
            max-width: 500px;
            margin: 100px auto;
            padding: 40px;
            background-color: #02032e;
            border: 2px solid #070b97;
            border-radius: 15px;
            box-shadow: 0 0 25px #030764;
            text-align: center;
        }

        .login-container h1 {
            color: #d7d7d7;
            margin-bottom: 20px;
        }

        .discord-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 15px 30px;
            background-color: #5865F2;
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .discord-btn:hover {
            background-color: #4752C4;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
        }

        .discord-btn svg {
            width: 24px;
            height: 24px;
        }

        /* New Dashboard Layout */
        .dashboard-container {
            max-width: 950px;
            margin: 100px auto 50px;
            padding: 0 20px;
        }

        .dashboard-card {
            background-color: #02032e;
            border: 2px solid #070b97;
            border-radius: 20px;
            box-shadow: 0 0 30px #030764;
            overflow: hidden;
        }

        /* Profile Header */
        .profile-header {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 30px;
            background: linear-gradient(135deg, #070b97 0%, #02032e 100%);
            border-bottom: 1px solid #070b97;
        }

        .profile-header-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 3px solid #5865F2;
            box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
        }

        .profile-header-info {
            flex: 1;
        }

        .profile-header-info h2 {
            color: #fff;
            margin: 0 0 5px 0;
            font-size: 22px;
        }

        .profile-header-info p {
            color: #a0a0a0;
            margin: 0;
            font-size: 14px;
        }

        .logout-header-btn {
            padding: 10px 20px;
            background-color: transparent;
            border: 1px solid rgba(220, 53, 69, 0.5);
            color: #dc3545;
            border-radius: 8px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .logout-header-btn:hover {
            background-color: #dc3545;
            border-color: #dc3545;
            color: white;
        }

        /* Email Toggle Button */
        .email-container {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .email-toggle-btn {
            background: transparent;
            border: none;
            color: #a0a0a0;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
            border-radius: 4px;
        }

        .email-toggle-btn:hover {
            color: #5865F2;
            background-color: rgba(88, 101, 242, 0.1);
        }

        .email-toggle-btn svg {
            width: 16px;
            height: 16px;
        }

        .email-text {
            transition: filter 0.3s ease;
        }

        .email-text.hidden {
            filter: blur(5px);
            user-select: none;
        }

        /* Tab Navigation */
        .tab-navigation {
            display: flex;
            background-color: #01021a;
            border-bottom: 1px solid #070b97;
            padding: 0 10px;
        }

        .tab-navigation a {
            display: flex;
            border: none;
            box-shadow: none;
            align-items: center;
            gap: 8px;
            padding: 18px 24px;
            height: auto;
            color: #a0a0a0;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-bottom: -1px;
        }

        .tab-navigation a:hover {
            color: #d7d7d7;
            box-shadow: none;
            background-color: rgba(7, 11, 151, 0.3);
        }

        .tab-navigation a.active {
            color: #5865F2;
            border-bottom-color: #5865F2;
            background-color: rgba(88, 101, 242, 0.1);
        }

        .tab-navigation a svg {
            width: 18px;
            height: 18px;
        }

        /* Tab Content */
        .tab-content {
            padding: 30px;
            min-height: 300px;
        }

        .tab-title {
            color: #d7d7d7;
            font-size: 20px;
            margin: 0 0 25px 0;
            padding-bottom: 15px;
            border-bottom: 1px solid #070b97;
        }

        /* Profile Tab */
        .profile-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .profile-card {
            background-color: #01021a;
            border: 1px solid #070b97;
            border-radius: 12px;
            padding: 20px;
        }

        .profile-card.full-width {
            grid-column: span 2;
        }

        .profile-card h3 {
            color: #5865F2;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin: 0 0 10px 0;
        }

        .profile-card p {
            color: #d7d7d7;
            font-size: 16px;
            margin: 0;
        }

        .profile-card .user-id-display {
            font-family: monospace;
            background-color: #02032e;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 13px;
            display: inline-block;
        }

        /* Status Badge */
        .status-badge {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }

        .status-badge.paid,
        .status-badge.active {
            background-color: rgba(40, 167, 69, 0.2);
            color: #28a745;
        }

        .status-badge.pending {
            background-color: rgba(255, 193, 7, 0.2);
            color: #ffc107;
        }

        /* Orders Tab */
        .orders-table {
            width: 100%;
            border-collapse: collapse;
        }

        .orders-table th,
        .orders-table td {
            padding: 15px 10px;
            text-align: left;
            border-bottom: 1px solid #070b97;
        }

        .orders-table th {
            color: #a0a0a0;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .orders-table td {
            color: #d7d7d7;
        }

        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #a0a0a0;
        }

        .empty-state svg {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            opacity: 0.4;
            stroke: #5865F2;
        }

        .empty-state h3 {
            color: #d7d7d7;
            margin: 0 0 8px 0;
            font-size: 18px;
        }

        .empty-state p {
            margin: 0;
            font-size: 14px;
        }

        /* Affiliate Tab */
        .affiliate-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        .stat-card {
            background-color: #01021a;
            border: 1px solid #070b97;
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
        }

        .stat-card .stat-value {
            color: #5865F2;
            font-size: 28px;
            font-weight: bold;
            margin: 0 0 5px 0;
        }

        .stat-card .stat-label {
            color: #a0a0a0;
            font-size: 13px;
            margin: 0;
        }

        .info-box {
            background-color: #01021a;
            border: 1px solid #070b97;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
        }

        .info-box h3 {
            color: #d7d7d7;
            margin: 0 0 12px 0;
            font-size: 15px;
        }

        .info-box p {
            color: #a0a0a0;
            margin: 0;
            font-size: 14px;
            line-height: 1.6;
        }

        .link-input-group {
            display: flex;
            gap: 10px;
        }

        .link-input-group input {
            flex: 1;
            background-color: #02032e;
            border: 1px solid #070b97;
            border-radius: 8px;
            padding: 12px 15px;
            color: #d7d7d7;
            font-size: 13px;
        }

        .link-input-group button {
            background-color: #5865F2;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            cursor: pointer;
            font-weight: bold;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .link-input-group button:hover {
            background-color: #4752C4;
        }

        /* Settings Tab */
        .settings-section {
            margin-bottom: 25px;
        }

        .settings-section:last-child {
            margin-bottom: 0;
        }

        .settings-section h3 {
            color: #a0a0a0;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 0 12px 0;
        }

        .setting-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #01021a;
            border: 1px solid #070b97;
            border-radius: 12px;
            padding: 18px 20px;
            margin-bottom: 10px;
        }

        .setting-info h4 {
            color: #d7d7d7;
            margin: 0 0 4px 0;
            font-size: 15px;
        }

        .setting-info p {
            color: #a0a0a0;
            margin: 0;
            font-size: 13px;
        }

        .toggle-switch {
            position: relative;
            width: 48px;
            height: 26px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #070b97;
            border-radius: 26px;
            transition: 0.3s;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            border-radius: 50%;
            transition: 0.3s;
        }

        .toggle-switch input:checked+.toggle-slider {
            background-color: #5865F2;
        }

        .toggle-switch input:checked+.toggle-slider:before {
            transform: translateX(22px);
        }

        .setting-item.danger {
            border-color: rgba(220, 53, 69, 0.3);
        }

        .danger-btn {
            background-color: transparent;
            border: 1px solid #dc3545;
            color: #dc3545;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .danger-btn:hover {
            background-color: #dc3545;
            color: white;
        }

        /* Messages */
        .error-message {
            background-color: rgba(220, 53, 69, 0.2);
            border: 1px solid #dc3545;
            color: #ff6b6b;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
        }

        .success-message {
            background-color: rgba(40, 167, 69, 0.2);
            border: 1px solid #28a745;
            color: #6bff6b;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 700px) {
            .profile-header {
                flex-direction: column;
                text-align: center;
            }

            .tab-navigation {
                overflow-x: auto;
                justify-content: flex-start;
            }

            .tab-navigation a {
                padding: 15px 18px;
                white-space: nowrap;
            }

            .tab-navigation a span {
                display: none;
            }

            .profile-grid {
                grid-template-columns: 1fr;
            }

            .profile-card.full-width {
                grid-column: span 1;
            }

            .affiliate-stats {
                grid-template-columns: 1fr;
            }

            .link-input-group {
                flex-direction: column;
            }
        }