/*Root */
:root {
    --primary-color: #cccccc;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff48;
    --text-light: #d3d3d3;
    --bg-dark: #0d1117;
    --bg-card: #21262d;
}

/*Styles */
body {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #161b22 100%);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

/*Scroll */
::-webkit-scrollbar {
    width: 10px;
    height: 1px;
}

::-webkit-scrollbar-track {
    background: #121212; 
}

::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #ffffff #121212;
}

/*Navigation */
.navbar {
    background: rgba(13, 17, 23, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-light) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/*Hero */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://i.ibb.co/fVYbw8Hf/rxnfivem.png') no-repeat center center;
    background-size: cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/*Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
}

/*Cards */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-light); 
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/*Features */
.feature-icon {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/*Stats */
.stats-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #2d333b 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.stats-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/*Pages */
.page-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.page-content.active.home-animate {
    animation: fadeIn 0.6s ease-out forwards;
}

/*Social widgets */
.social-widget {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.widget-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.widget-header i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-widget i,
.widget-header i {
    color: var(--text-light) !important;
}

/*Socials */
.social-links a {
    position: relative;
    text-decoration: none;
}

.social-links a::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.social-links a:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}


/*Footer*/
.footer {
    background: var(--secondary-color);
    margin-top: 100px;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.footer a {
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.footer a i {
    color: var(--text-light);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer a:hover i {
    color: var(--primary-color);
    transform: translateY(-2px) rotate(-2deg);
}

.footer i {
    color: var(--text-light) !important;
}


/*Effekts */
.pulse {
    animation: pulse 2s infinite;
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

/*Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}