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

body {
    font-family: 'Cinzel', 'Georgia', serif;
    background: #0a0a0a;
    color: #d4af37;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}



.confession-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.confession-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.confession-title {
    font-size: 4rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(212, 175, 55, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: glow 3s ease-in-out infinite alternate;
    white-space: nowrap;
    overflow: visible;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(212, 175, 55, 0.8), 0 0 20px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.8); }
    to { text-shadow: 0 0 20px rgba(212, 175, 55, 1), 0 0 30px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.6), 2px 2px 4px rgba(0, 0, 0, 0.8); }
}

.confession-subtitle {
    font-size: 1.2rem;
    color: #b8860b;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
}

.confession-form {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.3),
        inset 0 0 60px rgba(0, 0, 0, 0.5),
        0 10px 40px rgba(0, 0, 0, 0.8);
    position: relative;
}

.confession-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #d4af37, #ffd700, #d4af37);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.confession-form:hover::before {
    opacity: 0.2;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #d4af37;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.form-select, .form-textarea, .form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #3a3a3a;
    border-radius: 12px;
    background: #0a0a0a;
    color: #d4af37;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
}

.form-select:focus, .form-textarea:focus, .form-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.4), 
        inset 0 0 10px rgba(212, 175, 55, 0.1),
        inset 0 2px 8px rgba(0, 0, 0, 0.6);
    background: #121212;
}

.form-select option {
    background: #1a1a1a;
    color: #d4af37;
}

.form-textarea {
    min-height: 200px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(145deg, #d4af37 0%, #b8860b 100%);
    border: 2px solid #ffd700;
    border-radius: 12px;
    color: #0a0a0a;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 
        0 0 25px rgba(212, 175, 55, 0.5), 
        0 6px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.8), 
        0 10px 30px rgba(0, 0, 0, 0.6);
    border-color: #fff;
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.social-section {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #3a3a3a;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    color: #d4af37;
    text-decoration: none;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    background: linear-gradient(145deg, #d4af37, #b8860b);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    border-color: #ffd700;
    color: #0a0a0a;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.login-form {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 50px 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4), inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.login-title {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    text-align: center;
    word-wrap: break-word;
    line-height: 1.2;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .form-group:last-of-type {
    margin-bottom: 0;
}

.login-form .form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #3a3a3a;
    border-radius: 12px;
    background: #0a0a0a;
    color: #d4af37;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
}

.login-form .form-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.4), 
        inset 0 0 10px rgba(212, 175, 55, 0.1),
        inset 0 2px 8px rgba(0, 0, 0, 0.6);
    background: #121212;
}

.login-form .form-input::placeholder {
    color: #5a5a5a;
}

.login-form .submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(145deg, #d4af37 0%, #b8860b 100%);
    border: 2px solid #ffd700;
    border-radius: 12px;
    color: #0a0a0a;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 
        0 0 25px rgba(212, 175, 55, 0.5), 
        0 6px 20px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
}

.login-form .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.8), 
        0 10px 30px rgba(0, 0, 0, 0.6);
    border-color: #fff;
}

.login-form a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    color: #d4af37;
    text-decoration: none;
    border: 2px solid #3a3a3a;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.login-form a:hover {
    color: #ffd700;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Admin Layout */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #0a0a0a;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-right: 2px solid #d4af37;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid #3a3a3a;
    text-align: center;
}

.sidebar-header h2 {
    color: #d4af37;
    font-size: 1.25rem;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    word-break: break-word;
}

.sidebar-header p {
    color: #b8860b;
    font-size: 0.875rem;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #b8860b;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-left-color: #d4af37;
}

.sidebar-link.active {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    border-left-color: #d4af37;
}

.sidebar-link .badge {
    margin-left: auto;
    background: #d4af37;
    color: #0a0a0a;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #3a3a3a;
}

.logout-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: #ff6b6b;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logout-link:hover {
    background: rgba(255, 107, 107, 0.1);
}

.main-content {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
}

.navbar {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-bottom: 2px solid #3a3a3a;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-title {
    color: #d4af37;
    font-size: 1.5rem;
    text-transform: capitalize;
    word-break: break-word;
}

.navbar-user {
    color: #b8860b;
}

.navbar-user strong {
    color: #d4af37;
}

.content-area {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    position: relative;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #3a3a3a;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info h3 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-info p {
    color: #b8860b;
    font-size: 0.875rem;
}

.quick-actions {
    margin-top: 40px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.action-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #3a3a3a;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
}

.action-card svg {
    margin-bottom: 16px;
}

.action-card h3 {
    color: #d4af37;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.action-card p {
    color: #b8860b;
    font-size: 0.938rem;
    line-height: 1.4;
}

.datatable-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #3a3a3a;
    border-radius: 12px;
}

.datatable {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #3a3a3a;
    border-radius: 12px;
    overflow: hidden;
}

.datatable-row {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #3a3a3a;
    transition: all 0.3s ease;
}

.datatable-row:last-child {
    border-bottom: none;
}

.datatable-row:hover {
    background: rgba(212, 175, 55, 0.05);
}

.datatable-cell {
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: #d4af37;
    font-size: 0.875rem;
}

.confession-preview {
    color: #b8860b;
    line-height: 1.4;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.813rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn {
    background: linear-gradient(145deg, #4facfe, #00f2fe);
    color: #fff;
}

.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.4);
}

.delete-btn {
    background: linear-gradient(145deg, #ff6b6b, #ee5a6f);
    color: #fff;
}

.delete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 10px 14px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.pagination-btn:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.pagination-btn.active {
    background: linear-gradient(145deg, #d4af37, #b8860b);
    color: #0a0a0a;
    border-color: #d4af37;
}

.pagination-dots {
    color: #b8860b;
    padding: 0 8px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    padding: 20px;
}

.modal[style*="display: block"],
.modal[style*="display:block"] {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

#adModal {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.95) !important;
    z-index: 999999 !important;
}

#adModal[style*="display: none"],
#adModal[style*="display:none"] {
    display: none !important;
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #d4af37;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 2px solid #3a3a3a;
}

.modal-header h2 {
    color: #d4af37;
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #d4af37;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #ffd700;
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(80vh - 180px);
}

.modal-date {
    color: #b8860b;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.modal-message {
    color: #d4af37;
    line-height: 1.8;
    font-size: 1.063rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.stats-table {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #3a3a3a;
    border-radius: 16px;
    padding: 20px;
}

.stats-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-bottom: 1px solid #3a3a3a;
    transition: all 0.3s ease;
}

.stats-row:last-child {
    border-bottom: none;
}

.stats-row:hover {
    background: rgba(212, 175, 55, 0.05);
}

.stats-rank {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.125rem;
    width: 40px;
}

.stats-country {
    color: #d4af37;
    font-weight: 600;
    width: 150px;
}

.stats-bar-container {
    flex: 1;
    height: 24px;
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
}

.stats-bar {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    border-radius: 12px;
    transition: width 0.5s ease;
}

.stats-count {
    color: #b8860b;
    font-weight: 700;
    width: 60px;
    text-align: right;
}

.modal-footer {
    padding: 20px 24px;
    border-top: 2px solid #3a3a3a;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-shrink: 0;
}

.checkbox-list {
    display: grid;
    gap: 12px;
    padding: 16px;
    background: #0a0a0a;
    border: 2px solid #3a3a3a;
    border-radius: 12px;
    max-height: 200px;
    overflow-y: auto;
}

.checkbox-list::-webkit-scrollbar {
    width: 8px;
}

.checkbox-list::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.checkbox-list::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}

.checkbox-list::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #1a1a1a;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #d4af37;
    flex-shrink: 0;
}

.checkbox-item label {
    color: #d4af37;
    cursor: pointer;
    flex: 1;
    text-transform: capitalize;
    font-weight: 600;
    user-select: none;
}

.modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.export-pdf-btn {
    background: linear-gradient(145deg, #d4af37, #b8860b);
    color: #0a0a0a;
}

.export-pdf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.938rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: #0a0a0a;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    color: #d4af37;
    font-size: 0.938rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-select {
    cursor: pointer;
}

.export-txt-btn {
    background: linear-gradient(145deg, #4facfe, #00f2fe);
    color: #fff;
}

.export-txt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.4);
}

.confession-item {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #3a3a3a;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.confession-item:hover {
    transform: translateY(-2px);
    border-color: #d4af37;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.confession-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: #b8860b;
}

.confession-theme {
    background: linear-gradient(145deg, #d4af37, #b8860b);
    padding: 6px 14px;
    border-radius: 20px;
    color: #0a0a0a;
    font-weight: 700;
}

.confession-message {
    color: #d4af37;
    line-height: 1.8;
    font-size: 1rem;
}

.log-item {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-left: 4px solid #d4af37;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #b8860b;
    transition: all 0.3s ease;
}

.log-item:hover {
    border-left-color: #ffd700;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

.log-item strong {
    color: #d4af37;
}



.success-message {
    background: linear-gradient(145deg, #1a3a1a, #0d2a0d);
    border: 2px solid #4caf50;
    color: #4caf50;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.error-message {
    background: linear-gradient(145deg, #3a1a1a, #2a0d0d);
    border: 2px solid #f44336;
    color: #ff6b6b;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.3);
}

@media (max-width: 768px) {
    .confession-container {
        padding: 40px 15px;
    }
    
    .confession-header {
        text-align: center;
        width: 100%;
    }
    
    .confession-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        text-align: center;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
    }
    
    .confession-subtitle {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .confession-form {
        padding: 28px 20px;
        width: 100%;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .social-section {
        text-align: center;
        width: 100%;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .login-form {
        padding: 30px 24px;
    }
    
    .login-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 30px;
    }
    
    .login-form .form-input {
        padding: 14px;
        font-size: 0.938rem;
    }
    
    .login-form .submit-btn {
        padding: 16px;
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .form-label {
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .form-select,
    .form-textarea,
    .form-input {
        width: 100%;
    }
    
    .form-group {
        text-align: center;
    }
    
    .submit-btn {
        width: 100%;
    }
}