* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
}

.logo-text {
    font-size: 1.8em;
    font-weight: bold;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #ff0000;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Active navigation link */
nav ul li a.active {
    color: #ff0000;
}

nav ul li a.active::after {
    width: 100%;
}

/* Hero Section mit Background Image */
.hero {
    text-align: center;
    padding: 150px 20px 100px;
    position: relative;
    overflow: hidden;
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.7));
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #0a0a0a);
    z-index: 0;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3em;
    color: #cccccc;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
}

/* About Section */
.about {
    padding: 80px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2.8em;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-item {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-item:hover::before {
    opacity: 1;
}

.about-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.about-item i {
    font-size: 3em;
    color: #ff0000;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease;
}

.about-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.about-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ffffff;
}

.about-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* News Section */
.news {
    padding: 80px 20px;
}

.news h2 {
    font-size: 2.8em;
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.6), rgba(25, 25, 25, 0.8));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.news-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.3);
}

.news-item h3 {
    margin-bottom: 15px;
}

.news-item h3 a {
    color: #ff0000;
    text-decoration: none;
    font-size: 1.3em;
    transition: color 0.3s ease;
}

.news-item h3 a:hover {
    color: #ff3333;
}

.news-item p {
    color: #aaaaaa;
    line-height: 1.6;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    margin-top: 60px;
}

.social-media {
    margin-bottom: 20px;
}

.social-media a {
    color: #ffffff;
    margin: 0 15px;
    font-size: 2em;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-media a:hover {
    color: #ff0000;
    transform: translateY(-5px) scale(1.1);
}

footer p {
    color: #888888;
    font-size: 0.9em;
}

/* Floating particles effect */
.particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: float 10s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.6);
}

.lang-btn.active {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Games Page Styles */
.page-hero {
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
}

.page-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease-out;
}

.page-subtitle {
    font-size: 1.2em;
    color: #cccccc;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.games-section {
    padding: 60px 20px;
}

.games-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.game-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.game-card:hover {
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3);
    transform: translateY(-5px);
}

.game-card.reverse {
    direction: rtl;
}

.game-card.reverse > * {
    direction: ltr;
}

.game-trailer {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.trailer-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px dashed rgba(255, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.trailer-placeholder:hover {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.95));
    border-color: rgba(255, 0, 0, 0.6);
}

.trailer-placeholder i {
    font-size: 5em;
    color: #ff0000;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.trailer-placeholder:hover i {
    transform: scale(1.1);
}

.trailer-placeholder p {
    font-size: 1.2em;
    color: #cccccc;
}

.game-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-info h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6666;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    border: 1px solid rgba(255, 0, 0, 0.3);
    font-weight: 500;
}

.game-description {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05em;
}

.game-status {
    margin-bottom: 30px;
}

.status-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.in-development {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 140, 0, 0.3));
    color: #ffaa00;
    border: 1px solid rgba(255, 165, 0, 0.4);
}

.status-badge.coming-soon {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.2), rgba(0, 200, 0, 0.3));
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.4);
}

.status-badge.available {
    background: linear-gradient(135deg, rgba(0, 200, 0, 0.2), rgba(0, 255, 0, 0.3));
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.4);
}

.game-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.6);
    transform: translateY(-3px);
}

/* Video Wrapper für 16:9 Aspect Ratio */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.game-video:hover {
    cursor: pointer;
}

/* Custom Video Controls Styling */
.game-video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.game-video::-webkit-media-controls-play-button,
.game-video::-webkit-media-controls-current-time-display,
.game-video::-webkit-media-controls-time-remaining-display {
    color: #ff0000;
}

/* Press Page Styles */
.studio-presskit {
    padding: 60px 20px;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.5), rgba(10, 10, 10, 0.8));
}

.presskit-container {
    max-width: 1400px;
    margin: 0 auto;
}

.studio-presskit h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.studio-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.studio-description h3,
.studio-assets h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ff0000;
}

.studio-description p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.studio-assets {
    display: flex;
    flex-direction: column;
}

.game-presskit {
    padding: 80px 20px;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.presskit-header {
    text-align: center;
    margin-bottom: 50px;
}

.presskit-header h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.presskit-header .game-tags {
    justify-content: center;
}

.presskit-content {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.press-section {
    margin-bottom: 50px;
}

.press-section:last-child {
    margin-bottom: 0;
}

.press-section h3 {
    font-size: 1.8em;
    margin-bottom: 25px;
    color: #ff0000;
    border-bottom: 2px solid rgba(255, 0, 0, 0.2);
    padding-bottom: 10px;
}

.press-section p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.05em;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: #cccccc;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.features-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff0000;
    font-size: 1.2em;
}

.asset-downloads {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(25, 25, 25, 0.9));
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.download-btn:hover {
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.8), rgba(35, 35, 35, 0.9));
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.download-btn i {
    color: #ff0000;
    font-size: 1.2em;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.screenshot-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16/9;
    background: #000;
    cursor: pointer;
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.screenshot-item:hover img {
    transform: scale(1.1);
}

.download-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.download-overlay i {
    color: #ff0000;
    font-size: 3em;
    transition: transform 0.3s ease;
}

.screenshot-item:hover .download-overlay {
    opacity: 1;
}

.screenshot-item:hover .download-overlay i {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .game-card,
    .game-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .game-trailer {
        min-height: 300px;
    }
    
    .game-info {
        padding: 30px;
    }
    
    .game-info h2 {
        font-size: 2em;
    }
    
    .studio-info-grid {
        grid-template-columns: 1fr;
    }
    
    .presskit-content {
        padding: 30px;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .language-switcher {
        order: 3;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .about h2, .news h2 {
        font-size: 2em;
    }
    
    .page-hero h1 {
        font-size: 2.5em;
    }
    
    .game-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
    }
    
    .presskit-header h2 {
        font-size: 2em;
    }
    
    .press-section h3 {
        font-size: 1.5em;
    }
    
    .studio-info-grid {
        padding: 25px;
    }
    
    .presskit-content {
        padding: 20px;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
}