/* Registration Page Specific Styles */
/* Extends the main site styling with registration components */

.registration-container {
    max-width: 1000px;
    margin: 0 auto;
    z-index: 10;
    position: relative;
}

.registration-header {
    text-align: center;
    margin-bottom: 40px;
}

.registration-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ff88, #00cc66, #009944);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    letter-spacing: 2px;
}

.server-info {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 400;
}

.server-ip {
    color: #00ff88;
    font-weight: 700;
}

.server-version {
    color: #00bfff;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 0.8rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step.active .step-number {
    background: #00ff88;
    border-color: #00ff88;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.step.active .step-title {
    color: #00ff88;
}

.step.completed .step-number {
    background: rgba(0, 255, 136, 0.3);
    border-color: #00ff88;
    color: #00ff88;
}

.step.completed .step-title {
    color: #00ff88;
}

.step-separator {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
}

.alert-info {
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: #00bfff;
}

.alert-success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

/* Step Content Global Styling */
.step-content {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 30px;
    color: #ffffff !important;
    font-family: "Orbitron", monospace !important;
}

.step-section {
    width: 100%;
    color: #ffffff !important;
    font-family: "Orbitron", monospace !important;
}

.step-section * {
    color: inherit !important;
    font-family: "Orbitron", monospace !important;
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff !important;
}

.step-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff88 !important;
    margin-bottom: 15px;
    font-family: "Orbitron", monospace !important;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.step-header p {
    font-size: 1.1rem;
    color: #cccccc !important;
    line-height: 1.6;
    font-family: "Orbitron", monospace !important;
    font-weight: 400;
}

/* Discord Login Styles */
.discord-login-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .discord-login-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.login-benefits h3 {
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.benefits-grid {
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text strong {
    display: block;
    color: #00ff88;
    margin-bottom: 5px;
    font-size: 1rem;
}

.benefit-text p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.login-action {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.discord-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #5865f2;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.discord-login-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.discord-icon {
    width: 24px;
    height: 24px;
}

.login-info {
    max-width: 300px;
    text-align: left;
}

.permission-text, .privacy-text {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 10px;
    line-height: 1.4;
}

.privacy-text a {
    color: #00bfff;
    text-decoration: none;
}

.privacy-text a:hover {
    text-decoration: underline;
}

/* User Info Display */
.user-info {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.discord-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #00ff88;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.discord-name {
    font-weight: 700;
    color: #00ff88;
    font-size: 1.1rem;
}

.discord-id {
    font-size: 0.9rem;
    color: #aaa;
}

/* Form Styles */
.minecraft-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.account-type-selection h3,
.username-input-section h3 {
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.account-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .account-types {
        grid-template-columns: 1fr;
    }
}

.account-type-card {
    position: relative;
}

.account-type-card input[type="radio"] {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.account-type-label {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.account-type-label:hover {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.05);
}

.account-type-card input:checked + .account-type-label {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.account-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
}

.account-info strong {
    display: block;
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: center;
}

.account-info p {
    color: #cccccc;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.account-benefits {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.benefit {
    font-size: 0.85rem;
    color: #00ff88;
    text-align: left;
}

.account-warnings {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.warning {
    font-size: 0.85rem;
    color: #ffc107;
    text-align: left;
}

/* Input Groups */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group label {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.1rem;
}

.input-group input[type="text"] {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    font-family: "Orbitron", monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input[type="text"]:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.username-help {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.4;
}

.username-status {
    margin-top: 10px;
    min-height: 20px;
}

.status-checking {
    color: #ffc107;
}

.status-available {
    color: #00ff88;
}

.status-taken {
    color: #ff6b6b;
}

.status-error {
    color: #ff6b6b;
}

.status-ready {
    color: #00bfff;
}

.status-warning {
    color: #ffc107;
    font-weight: 500;
}

.status-neutral {
    color: #888;
}

/* Premium and Non-Premium Sections */
.premium-section, .non-premium-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-section h3, .non-premium-section h3 {
    color: #00ff88;
    margin-bottom: 20px;
}

.verification-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.verification-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.verification-step .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid #00ff88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #00ff88;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    color: #cccccc;
    font-size: 0.95rem;
}

.verify-premium-btn {
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-family: "Orbitron", monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.verify-premium-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.verify-premium-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.verification-note {
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

/* Warning Box */
.warning-box {
    display: flex;
    gap: 15px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.warning-icon {
    font-size: 1.5rem;
    color: #ffc107;
    flex-shrink: 0;
}

.warning-content {
    flex: 1;
}

.warning-content h4 {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.warning-content p {
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.5;
}

.warning-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 10px;
}

.warning-content li {
    color: #cccccc;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.warning-content li:before {
    content: "•";
    color: #ffc107;
    position: absolute;
    left: 0;
}

/* Buttons */
.btn {
    padding: 12px 25px;
    border-radius: 10px;
    border: none;
    font-family: "Orbitron", monospace;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
}

/* Help Section */
.help-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.help-section h3 {
    color: #00bfff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.help-item {
    background: rgba(0, 191, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.help-item strong {
    display: block;
    color: #00bfff;
    margin-bottom: 8px;
    font-size: 1rem;
}

.help-item p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.help-item a {
    color: #00ff88;
    text-decoration: none;
}

.help-item a:hover {
    text-decoration: underline;
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    top: 20px;
    right: -300px;
    background: rgba(0, 255, 136, 0.9);
    color: #000;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
    z-index: 1000;
    transition: right 0.3s ease;
}

.copy-notification.show {
    right: 20px;
}

/* Copy button */
.copy-btn {
    background: none;
    border: none;
    color: #00ff88;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px;
    margin-left: 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: rgba(0, 255, 136, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-header h1 {
        font-size: 2.5rem;
    }
    
    .step-content {
        padding: 30px 20px;
    }
    
    .step-indicator {
        gap: 5px;
    }
    
    .step-separator {
        width: 30px;
    }
    
    .step-title {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .registration-header h1 {
        font-size: 2rem;
    }
    
    .server-info {
        font-size: 1rem;
    }
    
    .step-content {
        padding: 20px 15px;
    }
}

/* Review Step Styles - More Specific Selectors */
.registration-review {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    color: #ffffff !important;
    font-family: "Orbitron", monospace !important;
}

.registration-review * {
    color: #ffffff !important;
    font-family: "Orbitron", monospace !important;
}

.registration-review .review-section {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 25px;
    color: #ffffff !important;
}

.registration-review .review-section h3 {
    color: #00ff88 !important;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    padding-bottom: 10px;
    font-family: "Orbitron", monospace !important;
}

.registration-review .review-item .review-details .review-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ff88 !important;
    font-family: "Orbitron", monospace !important;
    display: block;
}

.registration-review .review-item .review-details .review-id,
.registration-review .review-item .review-details .review-email {
    font-size: 0.9rem;
    color: #aaaaaa !important;
    font-family: "Orbitron", monospace !important;
    font-weight: 400;
    display: block;
}

.registration-review .minecraft-info .account-badge {
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: "Orbitron", monospace !important;
    display: inline-block;
}

.registration-review .minecraft-info .account-badge.premium {
    background: rgba(106, 90, 205, 0.2);
    color: #6a5acd !important;
    border: 1px solid rgba(106, 90, 205, 0.5);
}

.registration-review .minecraft-info .account-badge.non-premium {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500 !important;
    border: 1px solid rgba(255, 165, 0, 0.5);
}

.registration-review .minecraft-info .username-info .minecraft-username {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff !important;
    font-family: "Orbitron", monospace !important;
    display: block;
}

.registration-review .minecraft-info .username-info .minecraft-uuid {
    font-size: 0.8rem;
    color: #888888 !important;
    font-family: monospace !important;
    display: block;
}

.registration-review .server-details .server-item .server-label {
    font-weight: 600;
    color: #00bfff !important;
    font-family: "Orbitron", monospace !important;
    font-size: 1rem;
}

.registration-review .server-details .server-item .server-value {
    color: #ffffff !important;
    font-weight: 500;
    font-family: "Orbitron", monospace !important;
    font-size: 1rem;
}

/* OLD DUPLICATE SELECTORS REMOVED - REPLACED WITH MORE SPECIFIC ONES */

/* Keep existing layout styles */
.review-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.review-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.review-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.minecraft-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.account-type {
    display: flex;
    align-items: center;
    gap: 10px;
}

.username-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* OLD SELECTORS REMOVED - REPLACED WITH MORE SPECIFIC ONES ABOVE */

/* Keep existing other styles */

.server-details {
    display: grid;
    gap: 15px;
}

.server-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.server-item:last-child {
    border-bottom: none;
}

.server-label {
    font-weight: 600;
    color: #00bfff !important;
    font-family: "Orbitron", monospace !important;
    font-size: 1rem;
}

.server-value {
    color: #ffffff !important;
    font-weight: 500;
    font-family: "Orbitron", monospace !important;
    font-size: 1rem;
}

.step-section .terms-agreement {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    color: #ffffff !important;
    font-family: "Orbitron", monospace !important;
}

.step-section .terms-agreement .agreement-box h3 {
    color: #00ff88 !important;
    margin-bottom: 25px;
    font-size: 1.4rem;
    text-align: center;
    font-family: "Orbitron", monospace !important;
    font-weight: 700;
}

.step-section .terms-agreement .terms-list .term-item .term-text {
    line-height: 1.4;
    color: #dddddd !important;
    font-family: "Orbitron", monospace !important;
    font-size: 0.95rem;
    font-weight: 400;
}

.step-section .terms-agreement .checkbox-container .checkbox-text {
    font-weight: 600;
    color: #ffffff !important;
    cursor: pointer;
    font-family: "Orbitron", monospace !important;
    font-size: 1rem;
}

.step-section .next-steps-preview {
    background: rgba(0, 191, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    color: #ffffff !important;
    font-family: "Orbitron", monospace !important;
}

.step-section .next-steps-preview h3 {
    color: #00bfff !important;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
    font-family: "Orbitron", monospace !important;
    font-weight: 700;
}

.step-section .next-steps-preview .next-steps .next-step .step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #00bfff;
    color: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-family: "Orbitron", monospace !important;
}

.step-section .next-steps-preview .next-steps .next-step .step-text {
    color: #dddddd !important;
    line-height: 1.4;
    font-family: "Orbitron", monospace !important;
    font-size: 0.95rem;
    font-weight: 400;
}

.agreement-box h3 {
    color: #00ff88 !important;
    margin-bottom: 25px;
    font-size: 1.4rem;
    text-align: center;
    font-family: "Orbitron", monospace !important;
    font-weight: 700;
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.term-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.term-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.term-text {
    line-height: 1.4;
    color: #dddddd !important;
    font-family: "Orbitron", monospace !important;
    font-size: 0.95rem;
    font-weight: 400;
}

.term-text a {
    color: #00ff88;
    text-decoration: none;
}

.term-text a:hover {
    text-decoration: underline;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-container:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.3);
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #00ff88;
    cursor: pointer;
}

.checkbox-text {
    font-weight: 600;
    color: #ffffff !important;
    cursor: pointer;
    font-family: "Orbitron", monospace !important;
    font-size: 1rem;
}

.next-steps-preview {
    background: rgba(0, 191, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    color: #ffffff !important;
    font-family: "Orbitron", monospace !important;
}

.next-steps-preview h3 {
    color: #00bfff !important;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
    font-family: "Orbitron", monospace !important;
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 191, 255, 0.05);
    border-radius: 10px;
}

.next-step .step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #00bfff;
    color: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-family: "Orbitron", monospace !important;
}

.next-step .step-text {
    color: #dddddd !important;
    line-height: 1.4;
    font-family: "Orbitron", monospace !important;
    font-size: 0.95rem;
    font-weight: 400;
}

/* ADDITIONAL HIGHER SPECIFICITY STYLES FOR REVIEW CONTENT */
.registration-content .step-section .registration-review .review-section span,
.registration-content .step-section .registration-review .review-section .minecraft-username,
.registration-content .step-section .registration-review .review-section .review-name,
.registration-content .step-section .registration-review .review-section .review-id,
.registration-content .step-section .registration-review .review-section .review-email,
.registration-content .step-section .registration-review .review-section .account-badge {
    font-family: "Orbitron", monospace !important;
    color: inherit !important;
}

.registration-content .step-section .terms-agreement * {
    font-family: "Orbitron", monospace !important;
    color: inherit !important;
}

.registration-content .step-section .next-steps-preview * {
    font-family: "Orbitron", monospace !important;
    color: inherit !important;
}

/* Success Page Styles */
.success-header {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    font-family: "Orbitron", monospace;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.success-header h2 {
    color: #00ff88 !important;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: "Orbitron", monospace !important;
    font-weight: 700;
}

.success-header p {
    color: #cccccc !important;
    font-size: 1.2rem;
    font-family: "Orbitron", monospace !important;
}

.success-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.registration-summary {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 30px;
}

.registration-summary h3 {
    color: #00ff88 !important;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
    font-family: "Orbitron", monospace !important;
    font-weight: 700;
}

.summary-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 500px;
}

@media (min-width: 768px) {
    .summary-item {
        flex-direction: row;
        gap: 0;
        text-align: left;
    }
}

.summary-label {
    font-weight: 600;
    color: #00bfff !important;
    font-family: "Orbitron", monospace !important;
    font-size: 1rem;
}

.summary-value {
    color: #ffffff !important;
    font-weight: 500;
    font-family: "Orbitron", monospace !important;
    font-size: 1rem;
}

.account-badge {
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: "Orbitron", monospace !important;
    display: inline-block;
}

.account-badge.premium {
    background: rgba(106, 90, 205, 0.2);
    color: #6a5acd !important;
    border: 1px solid rgba(106, 90, 205, 0.5);
}

.account-badge.non_premium {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500 !important;
    border: 1px solid rgba(255, 165, 0, 0.5);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    font-family: "Orbitron", monospace !important;
    text-transform: capitalize;
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107 !important;
    border: 1px solid rgba(255, 193, 7, 0.5);
}

.status-badge.approved {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745 !important;
    border: 1px solid rgba(40, 167, 69, 0.5);
}

.status-badge.rejected {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545 !important;
    border: 1px solid rgba(220, 53, 69, 0.5);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

@media (min-width: 768px) {
    .timeline-item {
        flex-direction: row;
        text-align: left;
    }
}

.timeline-item.active {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.3);
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-item.active .timeline-icon {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 2px solid #00ff88;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    color: #00ff88 !important;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-family: "Orbitron", monospace !important;
    font-weight: 600;
}

.timeline-content p {
    color: #cccccc !important;
    margin-bottom: 5px;
    font-family: "Orbitron", monospace !important;
    font-size: 0.95rem;
}

.timeline-time {
    color: #888888 !important;
    font-size: 0.85rem;
    font-family: "Orbitron", monospace !important;
}

.server-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.server-name {
    color: #00ff88 !important;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: "Orbitron", monospace !important;
}

.server-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: "Orbitron", monospace !important;
}

.server-status.online {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745 !important;
    border: 1px solid rgba(40, 167, 69, 0.5);
}

.server-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.server-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    width: 100%;
    max-width: 400px;
}

@media (min-width: 768px) {
    .server-detail {
        flex-direction: row;
        text-align: left;
        gap: 0;
    }
}

.detail-label {
    color: #00bfff !important;
    font-weight: 600;
    font-family: "Orbitron", monospace !important;
    font-size: 1rem;
}

.detail-value {
    color: #ffffff !important;
    font-weight: 500;
    font-family: "Orbitron", monospace !important;
    font-size: 1rem;
}

.stay-connected {
    background: rgba(0, 191, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
}

.stay-connected h3 {
    color: #00bfff !important;
    margin-bottom: 25px;
    font-size: 1.4rem;
    text-align: center;
    font-family: "Orbitron", monospace !important;
    font-weight: 700;
}

.connection-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.connection-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

@media (min-width: 768px) {
    .connection-option {
        flex-direction: row;
        text-align: left;
    }
}

.connection-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.connection-icon.discord {
    background: rgba(88, 101, 242, 0.2);
    color: #5865f2;
    border: 1px solid rgba(88, 101, 242, 0.5);
}

.connection-icon.email {
    background: rgba(0, 191, 255, 0.2);
    color: #00bfff;
    border: 1px solid rgba(0, 191, 255, 0.5);
}

.connection-content {
    flex: 1;
}

.connection-content strong {
    display: block;
    color: #ffffff !important;
    margin-bottom: 5px;
    font-family: "Orbitron", monospace !important;
    font-weight: 600;
}

.connection-content p {
    color: #cccccc !important;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-family: "Orbitron", monospace !important;
}

.connection-link {
    color: #00ff88 !important;
    text-decoration: none;
    font-weight: 600;
    font-family: "Orbitron", monospace !important;
}

.connection-link:hover {
    text-decoration: underline;
}

.connection-status {
    color: #00ff88 !important;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: "Orbitron", monospace !important;
}

.important-notes {
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 15px;
    padding: 25px;
}

.important-notes h3 {
    color: #ffc107 !important;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
    font-family: "Orbitron", monospace !important;
    font-weight: 700;
}

.notes-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

@media (min-width: 768px) {
    .note-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
}

.note-item.info {
    background: rgba(0, 191, 255, 0.05);
    border-color: rgba(0, 191, 255, 0.2);
}

.note-item.warning {
    background: rgba(255, 193, 7, 0.05);
    border-color: rgba(255, 193, 7, 0.2);
}

.note-item.tip {
    background: rgba(40, 167, 69, 0.05);
    border-color: rgba(40, 167, 69, 0.2);
}

.note-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.note-text {
    color: #cccccc !important;
    font-family: "Orbitron", monospace !important;
    font-size: 0.95rem;
    line-height: 1.4;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Additional review page responsive design */
@media (max-width: 768px) {
    .review-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .minecraft-info {
        width: 100%;
    }
    
    .server-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .terms-agreement {
        padding: 20px;
    }
    
    .next-step {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .success-header h2 {
        font-size: 2rem;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .server-header {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}