/* User System Plugin Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:wght@300;400;500;600;700&family=Krona+One&display=swap');

/* Default font settings */
* {
    font-family: 'Roboto Serif', serif;
}

/* Headings font */
h1, h2, h3, h4, h5, h6,
.us-form h3,
.us-form h4,
.us-display-name,
.us-profile-header h1,
.us-profile-header h2,
.us-profile-info h2,
.us-info-box h4,
.us-cs2-full-section h3,
.us-profile-edit-header h2,
.us-section-title {
    font-family: 'Krona One', cursive !important;
}

.us-registration-form-wrapper,
.us-login-form-wrapper,
.us-profile-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 15px 0;
    padding: 15px 40px 40px 40px;
    background: linear-gradient(135deg, #1a1f3a 0%, #232749 50%, #2c2f4f 100%);
    border-radius: 16px;
    box-shadow: 
        0 15px 35px rgba(0, 14, 56, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid #3d4565;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.us-registration-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099cc, #ff6b35, #ffa500);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.us-form {
    margin: 0;
}

.us-form h3 {
    margin-top: 5px;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.us-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    border-radius: 2px;
}

.us-form h4 {
    margin: 25px 0 20px 0;
    color: #e8ecf7;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #4a5084;
    padding-bottom: 8px;
    position: relative;
    padding-left: 0; /* Usunięte wypełnienie dla kropek */
}

/* Usunięte kolorowe kropki - były tutaj */

.us-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.us-form-row .us-form-group {
    flex: 1;
}

.us-form-group {
    margin-bottom: 20px;
}

.us-form-group.us-full-width {
    flex: 1 1 100%;
    width: 100%;
}

.us-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e8ecf7;
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* Style dla ikon w labelach formularzy */
.us-form-group label i {
    font-size: 14px;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.us-form-group label img {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    object-fit: contain;
    vertical-align: middle;
}

.us-form-group input[type="text"],
.us-form-group input[type="email"],
.us-form-group input[type="password"],
.us-form-group input[type="number"],
.us-form-group input[type="url"],
.us-form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #4a5084;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: rgba(26, 31, 58, 0.8);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    height: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Osobny CSS dla textarea - bez height: 50px */
.us-form-group textarea {
    width: 100% !important;
    padding: 15px !important;
    border: 2px solid #4a5084 !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    background: rgba(26, 31, 58, 0.8) !important;
    color: #ffffff !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    resize: vertical !important;
    min-height: 150px !important;
    height: 150px !important;
    line-height: 1.6 !important;
}

/* Specjalne style dla select */
.us-form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23ffffff' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
    padding: 8px 40px 8px 12px !important;
    cursor: pointer;
    line-height: 1.4 !important;
    vertical-align: middle;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
}

/* Style dla opcji w select */
.us-form-group select option {
    background-color: #1a2332 !important;
    color: #ffffff !important;
    padding: 8px 12px !important;
    border: none !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
}

.us-form-group select option:hover,
.us-form-group select option:checked,
.us-form-group select option:focus {
    background-color: #00d4ff !important;
    color: #000e38 !important;
}

.us-form-group input::placeholder,
.us-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.us-form-group input:focus,
.us-form-group textarea:focus,
.us-form-group select:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
    background: rgba(26, 31, 58, 0.9);
}

/* Specjalny focus dla select */
.us-form-group select:focus {
    background: rgba(26, 31, 58, 0.9);
}

.us-form-group input.us-invalid {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.us-form-group small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-style: italic;
}

.us-form-section {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 5px solid #00d4ff;
    box-shadow: 0 2px 10px rgba(0, 14, 56, 0.2);
    backdrop-filter: blur(10px);
}

.us-form-subsection {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.us-form-subsection h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #00d4ff;
    font-weight: 600;
}

.us-form-description {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
}

/* Układ 2-kolumnowy dla pierwszych dwóch sekcji */
.us-sections-container {
    display: flex;
    gap: 25px;
    margin: 20px 0;
}

.us-sections-container .us-form-section {
    flex: 1;
    margin: 0;
}

/* Style dla pojedynczych sekcji */
.us-form-section.full-width {
    width: 100%;
}

.us-checkbox-group {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 2px solid #4a5084;
    backdrop-filter: blur(5px);
}

.us-checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.6;
}

.us-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 0;
    margin-bottom: 0;
    accent-color: #00d4ff;
    cursor: pointer;
    flex-shrink: 0;
}

.us-checkbox-group .checkbox-text {
    color: #e8ecf7;
    font-weight: 500;
}

.us-checkbox-group .checkbox-text a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #00d4ff;
}

.us-checkbox-group .checkbox-text a:hover {
    color: #33e0ff;
    border-bottom-style: solid;
}

/* reCAPTCHA styles */
.us-recaptcha-group {
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 2px solid #4a5084;
    backdrop-filter: blur(5px);
    text-align: center;
    min-height: 120px;
}

.us-recaptcha-group .g-recaptcha {
    margin: 0 auto;
    display: inline-block;
}

@media (max-width: 768px) {
    .us-recaptcha-group {
        padding: 15px;
        min-height: 100px;
    }
    
    .us-recaptcha-group .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}

@media (max-width: 480px) {
    .us-recaptcha-group .g-recaptcha {
        transform: scale(0.75);
    }
}

.us-form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 35px 0 20px 0;
    flex-wrap: wrap;
}

.us-btn {
    display: inline-block;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.us-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.us-btn:hover::before {
    left: 100%;
}

.us-btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000e38;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
    font-weight: 700;
}

.us-btn-primary:hover {
    background: linear-gradient(135deg, #33e0ff 0%, #00b8e6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.us-btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.us-btn-secondary:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    transform: translateY(-2px);
}

.us-btn-outline {
    background: transparent;
    border: 2px solid #ddd;
    color: #000;
    box-shadow: none;
}

.us-btn-outline:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #000;
    transform: translateY(-2px);
}

.us-btn-outline i {
    color: #000;
}

.us-form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.us-form-footer p {
    margin: 5px 0;
    color: #ffffff;
    font-weight: 500;
}

.us-form-footer a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
}

.us-form-footer a:hover {
    text-decoration: underline;
}

/* Messages */
.us-messages {
    margin: 15px 0;
}

.us-message {
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: 500;
}

.us-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.us-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.us-message-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Loading */
.us-loading {
    text-align: center;
    padding: 20px;
}

.us-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007cba;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: us-spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes us-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Profile specific styles */
.us-profile-wrapper {
    margin: 20px auto;
}

.us-profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.us-profile-avatar {
    margin-right: 20px;
}

.us-profile-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ddd;
}

.us-profile-info h2 {
    margin: 0 0 5px 0;
    color: #333;
}

.us-profile-info .us-profile-meta {
    color: #666;
    font-size: 14px;
}

.us-profile-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.us-profile-main {
    /* Main content area */
    min-height: 200px;
}

.us-profile-sidebar {
    /* Sidebar content */
    min-height: 200px;
}

.us-info-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #007cba;
}

.us-info-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.us-info-item {
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.us-info-item:last-child {
    border-bottom: none;
}

.us-info-item strong {
    display: inline-block;
    width: 120px;
    color: #555;
    font-weight: 600;
}

/* Style dla "BD" (brak danych) */
.us-no-data {
    color: #999 !important;
    font-style: italic;
    opacity: 0.7;
}

.us-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.us-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #007cba;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    transition: background 0.3s ease;
}

.us-social-link:hover {
    background: #005a87;
    color: #fff;
}

.us-social-link i {
    font-size: 14px;
}

/* Kolorowe ikonki dla różnych platform */
.us-social-link.us-social-x {
    background: #000000;
}

.us-social-link.us-social-facebook {
    background: #1877f2;
}

.us-social-link.us-social-tiktok {
    background: #000000;
}

.us-social-link.us-social-youtube {
    background: #ff0000;
}

.us-social-link.us-social-twitch {
    background: #9146ff;
}

.us-social-link.us-social-kick {
    background: #53fc18;
}

.us-social-link.us-social-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.us-link {
    color: #007cba;
    text-decoration: none;
}

.us-link:hover {
    color: #005a87;
    text-decoration: underline;
}

.us-faceit-level {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    color: #fff;
}

/* Avatar upload */
.us-avatar-upload {
    margin: 20px 0;
    text-align: center;
}

.us-avatar-preview {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.us-avatar-preview img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ddd;
}

/* Avatar upload section in profile edit form */
.us-avatar-upload-section {
    text-align: center;
    margin: 20px 0;
}

.us-current-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.us-current-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4a5084;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .us-registration-form-wrapper,
    .us-login-form-wrapper,
    .us-profile-wrapper {
        margin: 10px;
        padding: 20px 30px 30px 30px;
    }
}

@media (max-width: 768px) {
    .us-registration-form-wrapper,
    .us-login-form-wrapper,
    .us-profile-wrapper {
        margin: 10px;
        padding: 15px 20px 30px 20px;
    }
    
    .us-form h3 {
        font-size: 24px;
        margin-bottom: 15px;
        margin-top: 5px;
    }
    
    .us-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .us-sections-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .us-form-section {
        padding: 20px 15px;
        margin: 15px 0;
    }
    
    .us-checkbox-group {
        padding: 15px;
        margin: 15px 0;
    }
    
    .us-checkbox-group label {
        font-size: 14px;
    }
    
    .us-btn {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
    
    .us-form-actions {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .us-registration-form-wrapper,
    .us-login-form-wrapper,
    .us-profile-wrapper {
        padding: 10px 15px 25px 15px;
        margin: 5px;
    }
    
    .us-form-group input[type="text"],
    .us-form-group input[type="email"],
    .us-form-group input[type="password"],
    .us-form-group input[type="number"],
    .us-form-group input[type="url"] {
        padding: 12px;
        font-size: 14px;
        height: 45px;
    }
    
    .us-form-group textarea {
        padding: 12px !important;
        font-size: 14px !important;
        min-height: 150px !important;
        height: 150px !important;
    }
    
    .us-checkbox-group input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
    
    .us-form h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .us-form-actions {
        flex-direction: column;
        gap: 12px;
        margin: 25px 0 15px 0;
    }
}

.us-file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.us-file-input-wrapper input[type=file] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
}

.us-file-input-text {
    display: block;
    padding: 15px;
    border: 2px solid #4a5084;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.us-file-input-text:hover {
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.15);
}

.us-file-input-label {
    display: inline-block;
    padding: 8px 15px;
    background: #6c757d;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.us-file-input-label:hover {
    background: #545b62;
}

/* Responsive */
@media (max-width: 768px) {
    .us-registration-form-wrapper,
    .us-login-form-wrapper,
    .us-profile-wrapper {
        margin: 10px;
        padding: 15px;
    }
    
    .us-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .us-profile-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .us-profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .us-profile-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .us-social-links {
        justify-content: center;
    }
}

/* Counter-Strike 2 Section Styles */
.us-cs2-full-section {
    background: #ffffff;
    border: 1px solid #e0e7ff;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(30, 58, 138, 0.1);
}

.us-cs2-full-section h3 {
    color: #1e3a8a;
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #1e3a8a;
    padding-bottom: 10px;
}

.us-cs2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.us-cs2-item {
    background: #f8faff;
    border: 1px solid #dbeafe;
    border-radius: 6px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.us-cs2-item:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.15);
}

.us-cs2-label {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 14px;
    margin-right: 10px;
}

.us-cs2-value {
    color: #1e40af;
    font-weight: 500;
    text-align: right;
}

.us-cs2-value .us-link {
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 600;
}

.us-cs2-value .us-link:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.us-cs2-value .us-no-data {
    color: #6b7280;
    font-style: italic;
}

.us-faceit-level {
    background: #1e3a8a !important;
    color: white !important;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
}

/* Responsive dla sekcji CS2 */
@media (max-width: 768px) {
    .us-cs2-grid {
        grid-template-columns: 1fr;
    }
    
    .us-cs2-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .us-cs2-value {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .us-form h3 {
        font-size: 20px;
    }
    
    .us-btn {
        width: 100%;
        padding: 15px;
    }
    
    .us-profile-avatar img {
        width: 60px;
        height: 60px;
    }
}
/* Profile edit header styles */
.us-profile-edit-header h2 {
    color: #ffffff !important;
    margin: 0 0 10px 0;
}

.us-profile-edit-header p {
    color: #e8ecf7;
    margin: 0 0 20px 0;
}

.us-info-box h4 {
    color: #ffffff !important;
}

/* Smaller button variant for profile edit */
.us-btn.us-btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

/* Extra small button for back to profile */
.us-profile-edit-header .us-btn.us-btn-small {
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
}

/* Email change button styling */
.us-email-change-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

#us-change-email-btn {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #ddd !important;
}

/* Email confirmation popup styles */
.us-confirmation-success {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background: linear-gradient(135deg, #1a1f3a 0%, #232749 50%, #2c2f4f 100%);
    border-radius: 16px;
    box-shadow: 
        0 15px 35px rgba(0, 14, 56, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid #3d4565;
    text-align: center;
    color: #ffffff;
}

.us-confirmation-success h1 {
    color: #ffffff;
    font-family: 'Krona One', cursive;
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.us-confirmation-success p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.us-confirmation-success a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.us-confirmation-success a:hover {
    background: linear-gradient(90deg, #0099cc, #007aa3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 153, 204, 0.4);
}

.us-confirmation-error {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background: linear-gradient(135deg, #3a1a1a 0%, #492323 50%, #4f2c2c 100%);
    border-radius: 16px;
    box-shadow: 
        0 15px 35px rgba(56, 0, 14, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid #654545;
    text-align: center;
    color: #ffffff;
}

.us-confirmation-error h1 {
    color: #ffffff;
    font-family: 'Krona One', cursive;
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.us-confirmation-error p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.us-confirmation-error a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(90deg, #ff4444, #cc3333);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.us-confirmation-error a:hover {
    background: linear-gradient(90deg, #cc3333, #aa2222);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 51, 51, 0.4);
}
