:root {
    --dark-bg: #121212;
    --darker-bg: #1e1e1e;
    --card-bg: #2d2d2d;
    --text-color: #e0e0e0;
    --text-muted: #aaaaaa;
    --primary-accent: #dd4b39;
    --twitter-blue: #1da1f2;
    --patreon-orange: #f96854;
}

.logo-title-container {
    background-color: var(--darker-bg) !important;
}

body {
    background-color: rgb(18, 18, 18) !important;
    background-image:radial-gradient(circle at 25% 25%, rgba(141, 108, 199, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(234, 88, 89, 0.1) 0%, transparent 50%) !important;
    color: var(--text-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


body::before {
    background-color: var(--dark-bg);
}

.header {
    background: var(--primary-accent);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    text-align: center;
}

.thank-you-card {
    background-color: var(--card-bg);
    border-radius: 15px !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
    margin-bottom: 2rem !important;
    transition: transform 0.3s !important;
    border: none !important;
    overflow: hidden !important;
}

.thank-you-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4) !important;
}

img {
    border-radius: 5px;
}

.user-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--card-bg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin: 0 auto 15px auto;
    display: block;
}

.wide-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid #444;
}

.reason {
    font-style: italic;
    color: var(--text-muted);
    padding: 0 15px;
    text-align: center;
}

.card-title {
    padding: 0 15px;
    margin-top: 10px;
    text-align: center;
    color: var(--text-color);
}

.followers-section {
    background: linear-gradient(135deg, var(--twitter-blue) 0%, #0d8ecf 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    color: white;
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
    margin-top: 2rem;
}

.followers-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.patreon-section {
    background: linear-gradient(135deg, var(--patreon-orange) 0%, #e74c3c 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    color: white;
    box-shadow: 0 10px 30px rgba(249, 104, 84, 0.4);
    margin-top: 2rem;
}

.patreon-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.patreon-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.patreon-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

.patreon-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.patreon-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

.followers-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
}

.followers-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.followers-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.twitter-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.thank-you-btn {
    background-color: white;
    color: var(--twitter-blue);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 1.1rem;
}

.thank-you-btn-patreon {
    background-color: white;
    color: var(--patreon-orange);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 1.1rem;
}

.thank-you-btn:hover {
    background-color: #e8f5fe;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.25);
}

.thank-you-btn-patreon:hover {
    background-color: #fde8e6;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.25);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

button.btn.thank-you-btn:hover {
    color: black;
}

button.btn.thank-you-btn-patreon:hover {
    color: black;
}

.patreon-user-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    position: relative;
}

.patreon-user-card .reason {
    color: #f0f0f0;
}

.patreon-featured-card {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 34px rgba(0,0,0,0.28) !important;
    transform: translateY(-4px);
    border: 2px solid rgba(255,255,255,0.24) !important;
}

.patreon-featured-card .card-title {
    font-size: 1.55rem;
}

.patreon-featured-section-title {
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.patreon-crown {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
    font-size: 0.95rem;
}

.patreon-avatar-wrap {
    position: relative;
    width: 110px;
    margin: 0 auto 15px auto;
}

.patreon-avatar-wrap .user-img {
    margin-bottom: 0;
}

.patreon-avatar-rank {
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #101014;
    border: 2px solid rgba(255,255,255,0.35);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.patreon-meta {
    color: rgba(255,255,255,0.88) !important;
    font-size: 0.92rem;
    line-height: 1.45;
}

.patreon-rank-1 {
    border-color: rgba(255, 215, 106, 0.65) !important;
    box-shadow: 0 18px 38px rgba(255, 215, 106, 0.18) !important;
}

.patreon-rank-1 .patreon-crown,
.patreon-rank-1 .patreon-avatar-rank {
    background: linear-gradient(135deg, #ffe7a3 0%, #f6c54c 100%);
    color: #5b3c00;
    border-color: rgba(255, 238, 182, 0.9);
}

.patreon-rank-1 .user-img {
    border-color: rgba(255, 230, 150, 0.95);
}

.patreon-rank-2 {
    border-color: rgba(214, 223, 232, 0.62) !important;
    box-shadow: 0 18px 38px rgba(214, 223, 232, 0.16) !important;
}

.patreon-rank-2 .patreon-crown,
.patreon-rank-2 .patreon-avatar-rank {
    background: linear-gradient(135deg, #edf3f8 0%, #bcc7d1 100%);
    color: #39444d;
    border-color: rgba(240, 245, 249, 0.92);
}

.patreon-rank-2 .user-img {
    border-color: rgba(230, 236, 242, 0.95);
}

.patreon-rank-3 {
    border-color: rgba(221, 161, 118, 0.62) !important;
    box-shadow: 0 18px 38px rgba(221, 161, 118, 0.16) !important;
}

.patreon-rank-3 .patreon-crown,
.patreon-rank-3 .patreon-avatar-rank {
    background: linear-gradient(135deg, #efc8a7 0%, #c98955 100%);
    color: #4d2f18;
    border-color: rgba(243, 210, 183, 0.9);
}

.patreon-rank-3 .user-img {
    border-color: rgba(236, 191, 154, 0.95);
}

.discord-user-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
}

.discord-user-card .reason,
.discord-user-card .card-text {
    color: #f0f0f0;
}

.discord-user-card small {
    color: #ddd !important;
}

.loader {
    border: 5px solid #444;
    border-top: 5px solid var(--patreon-orange);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-text {
    color: var(--text-muted);
}

input, textarea, button, a, h1, h2, h4, p, img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
  user-drag: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

@media (max-width: 768px) {
    .header-section h1 {
        font-size: 2rem !important;
    }
}
        
.fw-bold {
    font-weight: 700 !important;
}

.pb-5, .py-5 {
    padding-bottom: 0 !important;
}

.header-section {
    background: linear-gradient(135deg, #6a0000 0%, var(--primary-accent) 100%);
    color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: none;
}

.discord-section {
    background: linear-gradient(135deg, #5865F2 0%, #404EED 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    color: white;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    margin-top: 2rem;
}

.discord-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.discord-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.discord-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

.discord-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.discord-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

.thank-you-btn-discord {
    background-color: white;
    color: #5865F2;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 1.1rem;
}

.thank-you-btn-discord:hover {
    background-color: #e8f0fe;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.25);
}
