body:not(.opening-active) .navbar-left .logo {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.28s ease-out, transform 0.28s ease-out;
}

.navbar-left .logo {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.28s ease-out, transform 0.28s ease-out;
}

.opening-corner.top-left {
    --target-x: calc(-50vw + clamp(80px, 9vw, 220px));
    --target-y: calc(-50vh + clamp(80px, 9vw, 220px));
}

.opening-corner.top-right {
    --target-x: calc(50vw - clamp(80px, 9vw, 220px));
    --target-y: calc(-50vh + clamp(80px, 9vw, 220px));
}

.opening-corner.bottom-left {
    --target-x: calc(-50vw + clamp(80px, 9vw, 220px));
    --target-y: calc(50vh - clamp(80px, 9vw, 220px));
}

.opening-corner.bottom-right {
    --target-x: calc(50vw - clamp(80px, 9vw, 220px));
    --target-y: calc(50vh - clamp(80px, 9vw, 220px));
}

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

:root {
    --primary-color: #00d4ff; /* Override edilecek - SQL'den gelecek */
    --secondary-color: #ffd700; /* Override edilecek - SQL'den gelecek */
    --bg-color: #0a0a0a; /* Override edilecek - SQL'den gelecek */
    --text-color: #e8e8e8; /* Override edilecek - SQL'den gelecek */
    --navbar-bg: #010409; /* Override edilecek - SQL'den gelecek */
    --border-color: rgba(255, 255, 255, 0.1);
}

html {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background-image: url('../images/background-img.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

body.opening-active {
    overflow: hidden;
}
.opening-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: overlayFadeOut 0.55s ease forwards;
    animation-delay: 0.6s;
}

.opening-overlay::before,
.opening-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: blur(16px);
}

.opening-overlay::before {
    background-image: url('../images/background-img.webp');
}

.opening-overlay::after {
    background: radial-gradient(circle at center, rgba(0, 12, 24, 0.85), rgba(1, 4, 9, 0.95) 60%, rgba(1, 4, 9, 0.98) 100%);
}

.opening-overlay > * {
    position: relative;
    z-index: 1;
}

.opening-frame {
    position: relative;
    width: min(90vmin, 520px);
    height: min(90vmin, 520px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.2);
    animation: frameExpand 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: center;
}

.opening-logo {
    width: min(140px, 18vmin);
    height: min(140px, 18vmin);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: logoReveal 0.75s ease-out forwards;
    animation-delay: 0.1s;
}

.opening-logo img,
.opening-logo .logo-fallback-icon {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.opening-logo .logo-fallback-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color, #ffd700);
    font-size: clamp(28px, 5vmin, 40px);
}

.opening-corner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(30vmin, 200px);
    height: min(30vmin, 200px);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.15);
    animation: cornerFly 0.85s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 0.05s;
}

.opening-corner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.5));
}

.opening-corner.top-left {
    --target-x: calc(-50vw + clamp(95px, 9vw, 220px));
    --target-y: calc(-50vh + clamp(95px, 9vw, 220px));
}

.opening-corner.top-right {
    --target-x: calc(50vw - clamp(95px, 9vw, 220px));
    --target-y: calc(-50vh + clamp(95px, 9vw, 220px));
}

.opening-corner.bottom-left {
    --target-x: calc(-50vw + clamp(95px, 9vw, 220px));
    --target-y: calc(50vh - clamp(95px, 9vw, 220px));
}

.opening-corner.bottom-right {
    --target-x: calc(50vw - clamp(95px, 9vw, 220px));
    --target-y: calc(50vh - clamp(95px, 9vw, 220px));
}

@keyframes frameExpand {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }
    30% {
        transform: scale(0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1.25);
        opacity: 1;
    }
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    30% {
        opacity: 1;
        transform: scale(1.05);
    }
    60% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes cornerFly {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.15);
    }
    25% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.85);
    }
    55% {
        opacity: 1;
        transform: translate(calc(-50% + var(--target-x) * 0.92), calc(-50% + var(--target-y) * 0.92)) scale(1.08);
    }
    75% {
        opacity: 1;
        transform: translate(calc(-50% + var(--target-x)), calc(-50% + var(--target-y))) scale(0.98);
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--target-x)), calc(-50% + var(--target-y))) scale(1.08);
    }
}

@keyframes overlayFadeOut {
    0% {
        opacity: 1;
        pointer-events: auto;
    }
    100% {
        opacity: 0;
        pointer-events: none;
    }
}

.page-corner {
    position: fixed;
    max-width: clamp(140px, 16vw, 260px);
    pointer-events: none;
    z-index: 20;
    opacity: 0.85;
    transition: opacity 0.25s ease-out 0.1s, transform 0.25s ease-out 0.1s;
}

body.opening-active .page-corner,
body.opening-active .navbar-left .logo {
    opacity: 0;
    transform: scale(0.88);
}
body.opening-active .navbar-left .logo {
    pointer-events: none;
}

.navbar-left .logo {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.28s ease-out, transform 0.28s ease-out;
}

.page-corner img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.45));
}

.page-corner.top-left {
    top: 0;
    left: 0;
}

.page-corner.top-right {
    top: 0;
    right: 0;
}

.page-corner.bottom-left {
    bottom: 0;
    left: 0;
}

.page-corner.bottom-right {
    bottom: 0;
    right: 0;
}

.page-corner.top-left img,
.page-corner.bottom-left img {
    transform-origin: top left;
}

.page-corner.top-right img,
.page-corner.bottom-right img {
    transform-origin: top right;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 40px;
    border: none;
    backdrop-filter: none;
    background-color: transparent !important;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 100px;
    height: 80px;
    object-fit: contain;
}

.logo-fallback {
    width: 100px;
    height: 80 px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.discord-login-btn,
.user-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 27px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.discord-login-btn:hover,
.user-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-rgba-medium, rgba(0, 212, 255, 0.2));
}

.discord-login-btn i,
.user-btn i,
.user-btn .user-avatar-fallback {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    align-self: center;
}

.user-dropdown {
    position: relative;
    z-index: 10001;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    height: 41px;
    align-self: center;
}

.user-name {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.user-role {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.1;
    opacity: 0.9;
    margin: 0;
    padding: 0;
    align-items: center;
}

.role-color-kateshi {
    color: #ADD8E6;
}

.role-color-owner {
    color: #FFD700;
}

.role-color-admin {
    color: #FF0000;
}

.role-color-moderator {
    color: #4169E1;
}

.role-color-staff {
    color: #00CC00;
}

.role-color-whitelist {
    color: #FFFFFF;
}

.role-color-whitelist-banned {
    color: #8B0000;
}

.role-color-default {
    color: #808080;
}

.role-icon-shield {
    flex-shrink: 0;
}

.dropdown-arrow {
    width: 17px;
    height: 17px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 240px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.user-dropdown.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.dropdown-item svg,
.dropdown-item i {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 6px 0;
}

.dropdown-item-danger {
    color: #ef4444;
}

.dropdown-item-danger:hover {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Main Content */
.main-content {
    display: flex;
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    z-index: 1;
    background: transparent;
    background-image: none;
}

.content-left {
    flex: 1;
    padding: 80px 60px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
    position: relative;
}

.main-heading {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 32px;
    color: var(--text-color);
    position: relative;
}

.heading-line {
    display: inline-block;
    background: linear-gradient(135deg, 
        var(--text-color) 0%, 
        var(--text-color) 50%, 
        var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.heading-line:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 0;
    margin-top: 0;
    animation: fadeIn 1s ease-out 0.3s both;
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.9;
    }
}

.content-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border: none;
    z-index: 100;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.copyright {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.server-status-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 7px;
    border: 1px solid #ADD8E6;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: #ADD8E6;
    text-decoration: none;
    opacity: 0.8;
    transform: scale(0.805);
    transform-origin: right center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 101;
}

.powered-by-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ADD8E6;
    transform: scale(0.805) translateY(-1px);
    box-shadow: 0 2px 6px rgba(173, 216, 230, 0.2);
    opacity: 1;
}

.powered-by-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.server-status-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.content-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 80px 60px;
    overflow: hidden;
    background: transparent;
}

.animated-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--primary-color);
}

.particle:nth-child(1) {
    left: 20%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 60%;
    top: 40%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 80%;
    top: 60%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 40%;
    top: 80%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 10%;
    top: 70%;
    animation-delay: 3s;
    animation-duration: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -100px) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translate(50px, -30px) scale(1.1);
        opacity: 0.5;
    }
}

.design-circles {
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 1px solid var(--primary-rgba-border, rgba(0, 212, 255, 0.1));
    animation: rotate 60s linear infinite;
    z-index: 2;
    background: radial-gradient(circle, var(--primary-rgba-lighter, rgba(0, 212, 255, 0.03)) 0%, transparent 70%);
}

.design-circles::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid var(--secondary-rgba-border, rgba(255, 215, 0, 0.08));
    transform: translate(-50%, -50%);
    animation: rotate 40s linear infinite reverse;
}

.design-circles::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid var(--primary-rgba-border-light, rgba(0, 212, 255, 0.06));
    transform: translate(-50%, -50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.apply-button {
    position: relative;
    width: auto;
    min-width: 220px;
    height: 70px;
    padding: 0 40px;
    margin-top: 40px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    background: #ffffff;
    color: var(--bg-color);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    border: 2px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    text-shadow: none;
    backdrop-filter: none;
}

.apply-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 0, 0, 0.1), 
        transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.apply-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.apply-text::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.apply-glow {
    display: none;
}

.apply-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%,
        rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: 16px;
}

.apply-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    padding: 0 45px;
    background: #ffffff;
    color: var(--bg-color);
}

.apply-button:hover::before {
    left: 100%;
}

.apply-button:hover::after {
    opacity: 1;
}

.apply-button:hover .apply-text::after {
    transform: translateX(5px);
}

.apply-button:active {
    transform: translateY(-2px) scale(0.98);
}

.character-illustration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: min(680px, 58vw);
    height: min(800px, 68vh);
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    transform: translate(60px, 40px);
}

.ped-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    animation: fadeInUpImage 1.2s ease-out 0.5s both;
    transform-origin: bottom right;
}

@keyframes fadeInUpImage {
    from {
        opacity: 0;
        transform: translateY(50px) scale(1.05);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1.12);
    }
}

.illustration-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--primary-rgba-very-light, rgba(0, 212, 255, 0.05)) 0%, 
        var(--secondary-rgba-very-light, rgba(255, 215, 0, 0.05)) 50%,
        var(--primary-rgba-very-light, rgba(0, 212, 255, 0.05)) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    opacity: 0.3;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.illustration-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 0%,
        var(--primary-rgba-medium-light, rgba(0, 212, 255, 0.1)) 25%,
        var(--secondary-rgba-medium-light, rgba(255, 215, 0, 0.1)) 50%,
        var(--primary-rgba-medium-light, rgba(0, 212, 255, 0.1)) 75%,
        transparent 100%
    );
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .main-heading {
        font-size: 48px;
    }
    
    .main-description {
        font-size: 16px;
    }
    
    .content-left,
    .content-right {
        padding: 60px 40px;
    }
}

@media (max-width: 968px) {
    .main-content {
        flex-direction: column;
    }
    
    .content-left {
        max-width: 100%;
        padding: 60px 40px 100px;
    }
    
    .content-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 16px 20px;
    }
    
    .footer-right {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .copyright {
        margin: 0;
    }
    
    .content-right {
        padding: 40px;
        min-height: 400px;
    }
    
    .apply-button {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 30px 0 0 0;
        width: 100%;
        max-width: 300px;
    }
    
    .character-illustration {
        position: relative;
        width: 100%;
        height: 400px;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .ped-image {
        object-position: center bottom;
    }
    
    .nav-links {
        display: none;
    }
    
    .content-footer {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 16px 20px;
    }
    
    .footer-center {
        gap: 8px;
    }
    
    .powered-by {
        margin-top: 8px;
    }
}

@media (max-width: 640px) {
    .main-heading {
        font-size: 36px;
    }
    
    .navbar {
        padding: 16px 20px;
    }
    
    .logo img,
    .logo-fallback {
        width: 36px;
        height: 36px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .content-left,
    .content-right {
        padding: 40px 24px;
    }
    
    .discord-login-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .discord-login-btn svg {
        width: 18px;
        height: 18px;
    }
}


