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

:root {
    --primary-color: #0066ff;
    --primary-dark: #0044cc;
    --secondary-color: #ff6600;
    --accent-purple: #9933ff;
    --accent-pink: #ff3399;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: rgba(26, 26, 36, 0.9);
    --card-bg-solid: #1a1a24;
    --text-color: #ffffff;
    --text-muted: #a0a0b0;
    --gradient-1: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
    --gradient-2: linear-gradient(135deg, #ff6600 0%, #ff9900 100%);
    --gradient-3: linear-gradient(135deg, #0066ff 0%, #9933ff 50%, #ff3399 100%);
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--dark-bg);
    background-image: 
        radial-gradient(ellipse at top left, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(153, 51, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(255, 51, 153, 0.08) 0%, transparent 50%);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/do-you-ever-just-appreciate-gta-5s-scenery-v0-iioqw5w1ar6b1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.08;
    z-index: -1;
    filter: blur(2px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:active {
    transform: scale(0.95);
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-join {
    background: var(--gradient-1);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.nav-join::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--darker-bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/do-you-ever-just-appreciate-gta-5s-scenery-v0-iioqw5w1ar6b1.webp') center/cover no-repeat;
    opacity: 0.7;
    filter: brightness(1.1) saturate(1.2);
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.95) 100%);
    z-index: 2;
}

.hero-character {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 45%;
    height: 90%;
    background: url('assets/2.png') center bottom/contain no-repeat;
    z-index: 5;
    filter: drop-shadow(0 0 40px rgba(0, 102, 255, 0.4));
    animation: characterFloat 6s ease-in-out infinite;
}

@keyframes characterFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-15px) translateX(-5px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
    text-align: left;
    margin-right: 35%;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.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 ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: scale(0.95);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
}

.btn-primary {
    background: var(--gradient-3);
    color: white;
    box-shadow: 0 10px 30px rgba(153, 51, 255, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(153, 51, 255, 0.5);
}

.btn-primary:active {
    transform: translateY(0) scale(0.95);
}

.btn-secondary {
    background: var(--card-bg);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.95);
}

.btn-secondary-orange {
    background: var(--card-bg);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-secondary-orange:hover {
    background: var(--gradient-2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.btn-secondary-orange:active {
    transform: translateY(0) scale(0.95);
}

.btn-secondary-purple {
    background: var(--card-bg);
    color: white;
    border: 2px solid var(--accent-purple);
}

.btn-secondary-purple:hover {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(153, 51, 255, 0.4);
}

.btn-secondary-purple:active {
    transform: translateY(0) scale(0.95);
}

.btn-large {
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--darker-bg);
    background-image: 
        radial-gradient(ellipse at top right, rgba(153, 51, 255, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at bottom left, rgba(0, 102, 255, 0.1) 0%, transparent 40%);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(153, 51, 255, 0.3);
}

.section-subtitle {
    font-size: 1.8rem;
    text-align: center;
    margin: 3rem 0 1rem;
    color: var(--text-color);
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-about .section-text {
    text-align: left;
}

/* Animation helper classes */
.animate-from-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-from-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.2), 0 0 30px rgba(153, 51, 255, 0.1);
}

.card:active {
    transform: translateY(-5px) scale(0.98);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.15);
}

/* Screenshot Galerie */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto 3rem;
    max-width: 1200px;
}

.screenshot-card {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-card {
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.screenshot-card:hover {
    transform: scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.3), 0 0 30px rgba(153, 51, 255, 0.2);
}

.screenshot-card:active {
    transform: scale(0.98);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.15);
}

.screenshot-card:hover img {
    transform: scale(1.05);
}

/* Feature Highlight */
.feature-highlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(153, 51, 255, 0.1) 100%);
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin: 2.5rem auto;
    max-width: 900px;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15), 0 0 40px rgba(153, 51, 255, 0.08);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.25), 0 0 60px rgba(153, 51, 255, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-main {
    font-size: 3.5rem;
    z-index: 2;
    position: relative;
}

.feature-icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.feature-text h4 {
    font-size: 1.5rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Responsive Feature Highlight */
@media (max-width: 768px) {
    .feature-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-main {
        font-size: 3rem;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 95%;
    max-height: 95vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* Story Card */
.story-card {
    background: var(--card-bg);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    max-width: 900px;
    margin: 0 auto;
}

.story-card {
    -webkit-tap-highlight-color: transparent;
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.2), 0 0 40px rgba(153, 51, 255, 0.1);
}

.story-card:active {
    transform: translateY(0) scale(0.98);
}

.story-text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.story-text:last-child {
    margin-bottom: 0;
}

/* Team Sektion */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem auto;
    max-width: 1000px;
}

.team-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.team-card {
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.2), 0 0 40px rgba(153, 51, 255, 0.1);
}

.team-card:active {
    transform: translateY(-5px) scale(0.98);
}

/* Services Sektion */
.services-feature {
    transition: all 0.3s ease;
    cursor: pointer;
}

.services-feature:hover {
    transform: translateY(-3px);
    background: rgba(0, 102, 255, 0.1) !important;
    border-color: rgba(0, 102, 255, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.services-feature:active {
    transform: translateY(-1px) scale(0.98);
}

/* Services Sektion Responsive */
@media (max-width: 768px) {
    .services-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .services-image {
        order: 1;
    }

    .services-content {
        order: 2;
    }

    .services-feature {
        padding: 0.8rem !important;
    }
}

/* Custom Notifications/Alerts */
.notification {
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 1.5rem auto;
    max-width: 800px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: slideIn 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.notification-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.notification-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: var(--text-color);
}

/* Error Notification */
.notification-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.notification-error::before {
    background: linear-gradient(to bottom, #ef4444, #dc2626);
}

.notification-error .notification-title {
    color: #fca5a5;
}

/* Warning Notification */
.notification-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.notification-warning::before {
    background: linear-gradient(to bottom, #f59e0b, #d97706);
}

.notification-warning .notification-title {
    color: #fcd34d;
}

/* Info Notification */
.notification-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.notification-info::before {
    background: linear-gradient(to bottom, #3b82f6, #2563eb);
}

.notification-info .notification-title {
    color: #93c5fd;
}

/* Success Notification */
.notification-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.notification-success::before {
    background: linear-gradient(to bottom, #22c55e, #16a34a);
}

.notification-success .notification-title {
    color: #86efac;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--darker-bg);
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.6rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.team-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsive Team */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-image-wrapper {
        height: 240px;
    }
    
    .team-info {
        padding: 1.5rem;
    }
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Steps */
.step-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--primary-color);
}

.step-number {
    min-width: 60px;
    height: 60px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(153, 51, 255, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(153, 51, 255, 0.5);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.step-text {
    color: var(--text-muted);
}

/* List */
.list {
    max-width: 600px;
    margin: 2rem auto 0;
    list-style: none;
}

.list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Join Section Member Counter */
.join-member-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 102, 255, 0.1);
}

.join-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.join-stat-icon {
    font-size: 1.8rem;
}

.join-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(153, 51, 255, 0.3);
}

.join-stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

.join-stat-divider {
    width: 2px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, var(--gradient-3), transparent);
}

/* Responsive Join Counter */
@media (max-width: 768px) {
    .join-member-counter {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.2rem 1.5rem;
    }
    
    .join-stat-divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    }
    
    .join-stat-number {
        font-size: 2rem;
    }
    
    .join-stat-label {
        font-size: 0.9rem;
    }
}

/* Join Section */
.section-join {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-social-icon {
    font-size: 1.3rem;
}

.footer-text {
    text-align: center;
    color: var(--text-muted);
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 2rem auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 600px;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    word-break: break-word;
}

th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    white-space: nowrap;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: rgba(0, 102, 255, 0.1);
}

/* Rule List Styles */
.rule-list {
    max-width: 900px;
    margin: 2rem auto;
}

.rule-category {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rule-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 162, 255, 0.1);
}

.rule-category h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.rule-item {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.6;
}

.rule-item:last-child {
    border-bottom: none;
}

.rule-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Important red text */
.important-text {
    color: #ff4444 !important;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

/* Hidden secret confirmation text */
.secret-confirmation {
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.9;
    margin-left: 0.5rem;
}

/* Highlighted rule */
.rule-highlight {
    background: rgba(255, 68, 68, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ff4444;
    margin: 0.5rem 0;
}

/* Warning box */
.warning-box {
    background: rgba(255, 165, 0, 0.2);
    border: 2px solid rgba(255, 165, 0, 0.6);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 165, 0, 0.6);
        transform: scale(1.02);
    }
}

.warning-title {
    font-size: 1.8rem;
    color: #ff9500;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.warning-text {
    font-size: 1.1rem;
    color: #ffcc80;
    line-height: 1.6;
}

/* Legal Text Styles */
.legal-text {
    max-width: 900px;
    margin: 2rem auto;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    padding: 0 1rem;
    overflow-wrap: anywhere; /* Breaks long words/numbers */
    word-break: break-word; /* Fallback for older browsers */
}

.legal-text p {
    margin-bottom: 1.5rem;
}

.legal-text h3 {
    color: var(--text-color);
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        margin-right: 0;
        text-align: center;
    }
    
    .hero-character {
        width: 55%;
        right: 0;
        opacity: 0.6;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-character {
        width: 70%;
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .hero-character {
        display: block;
        width: 80%;
        right: 0;
        opacity: 0.7;
        bottom: -50px;
    }
    
    .hero-content {
        padding-top: 5rem;
        text-align: center;
        margin-right: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .member-counter {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    
    .member-icon {
        font-size: 3rem;
    }
    
    .member-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu .nav-item {
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(7) { transition-delay: 0.35s; }
    .nav-menu.active .nav-item:nth-child(8) { transition-delay: 0.4s; }

    .hero-logo {
        height: 80px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 0.5rem;
        cursor: pointer;
    }

    .hamburger {
        width: 25px;
        height: 3px;
        background: var(--text-color);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav--active .hamburger {
        background: transparent;
    }

    .nav--active .hamburger::before {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav--active .hamburger::after {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.7rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 1.3rem;
    }

    .section-text {
        padding: 0 1rem;
    }

    .card-grid {
        padding: 0 1rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .step-list {
        padding: 0 1rem;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .step-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .rule-category {
        padding: 1.2rem;
    }

    table {
        min-width: 500px;
    }

    th, td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top {
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.6);
}

.back-to-top:active {
    transform: translateY(0) scale(0.9);
}

/* Quick Jump Navigation */
.quick-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem auto;
    max-width: 800px;
}

.quick-jump-btn {
    background: var(--card-bg);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quick-jump-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
}

/* Straf Rechner Styles */
.straf-rechner-container {
    max-width: 900px;
    margin: 2rem auto;
}

.search-box {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    background: var(--card-bg);
    color: var(--text-color);
    outline: none;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.search-box:focus {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.straftat-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.straftat-item {
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.straftat-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.result-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    margin-top: 2rem;
}

.result-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.result-item {
    text-align: center;
}

.result-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

.result-value.fine {
    color: #ff9900;
}

.result-value.jail {
    color: #ff4444;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .step-number {
        min-width: 45px;
        height: 45px;
        font-size: 1.1rem;
        box-shadow: 0 0 15px rgba(153, 51, 255, 0.2);
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}