* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    background: url('assets/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: white;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    animation: gradientAnimation 10s ease infinite;
    z-index: -1;
}

@keyframes gradientAnimation {
    0% {
        background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    }
    50% {
        background: linear-gradient(45deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    }
    100% {
        background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.main-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gaming-platforms, .social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    border: 1px solid transparent;
}

.platform-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.platform-card.neon-active {
    border: 1px solid var(--neon-color);
    box-shadow: 0 0 3px var(--neon-color),
                0 0 5px var(--neon-color);
    transition: all 0.3s ease;
}

.platform-card.neon-active:hover {
    box-shadow: 0 0 5px var(--neon-color),
                0 0 10px var(--neon-color);
}

.platform-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.platform-link img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.platform-link span {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.social-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
}

.social-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.social-link i {
    font-size: 24px;
}

.social-link span {
    font-size: 16px;
    font-weight: bold;
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-card .fa-telegram {
    color: #0088cc;
}

.social-card .fa-skype {
    color: #00aff0;
}

.social-card .fa-youtube {
    color: #ff0000;
}

.promo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem 0;
}

.side-column {
    flex: 0 0 150px;
    height: 400px;
    overflow: hidden;
}

.promo-gif {
    flex: 1;
    text-align: center;
    max-width: 60%;
}

.promo-gif img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.side-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.side-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.side-card img {
    width: 250%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    transform: rotate(90deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
}

.side-card .platform-link {
    font-size: 1.4rem;
    padding-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    z-index: 0;
}

.banner-logo {
    flex: 0 0 150px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.banner-logo img {
    width: 100%;
    height: auto;
    max-width: 150px;
    display: block;
}

.banner-text {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.banner-text h1 {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
    white-space: nowrap;
    background: linear-gradient(to right, rgba(255, 140, 0, 0.8), rgba(255, 69, 0, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .gaming-platforms, .social-platforms {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .promo-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .side-column {
        width: 100%;
        height: 200px;
    }
    
    .promo-gif {
        max-width: 100%;
    }
    
    .side-card img {
        transform: rotate(0deg);
    }
    
    .banner {
        flex-direction: column;
        padding: 1rem;
    }
    
    .banner-logo {
        flex: 0 0 auto;
        margin-bottom: 1rem;
    }
    
    .banner-text {
        padding: 1rem 0;
    }
    
    .banner-text h1 {
        font-size: 1.5rem;
    }
}

/* Mobil Uyumluluk */
@media screen and (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .banner {
        flex-direction: column;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
        z-index: 0;
    }

    .banner-logo:last-child {
        display: none;
    }

    .banner-text {
        display: none;
    }

    .banner-logo {
        flex: 0 0 auto;
        margin-bottom: 0;
        position: relative;
        z-index: 1;
    }

    .gaming-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .platform-card {
        padding: 8px;
        border-radius: 12px;
        aspect-ratio: 4/3;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .platform-link {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .platform-link img {
        width: 85%;
        height: 85%;
        object-fit: contain;
        margin: 0;
    }

    .promo-section {
        flex-direction: column;
        gap: 1rem;
    }

    .side-column {
        display: none;
    }

    .promo-gif {
        max-width: 100%;
        order: -1;
    }

    .social-platforms {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .social-card {
        padding: 10px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .social-card .fa-telegram {
        color: #0088cc;
        background: rgba(0, 136, 204, 0.1);
        padding: 10px;
        border-radius: 50%;
    }

    .social-card .fa-skype {
        color: #00aff0;
        background: rgba(0, 175, 240, 0.1);
        padding: 10px;
        border-radius: 50%;
    }

    .social-card .fa-youtube {
        color: #ff0000;
        background: rgba(255, 0, 0, 0.1);
        padding: 10px;
        border-radius: 50%;
    }

    .social-card i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .social-link {
        flex-direction: column;
        gap: 5px;
    }

    .social-link span {
        font-size: 12px;
    }

    .platform-link span {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .banner-text h1 {
        font-size: 1.2rem;
    }

    .gaming-platforms {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .platform-card {
        padding: 6px;
        aspect-ratio: 4/3;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .platform-link {
        width: 100%;
        height: 100%;
    }

    .platform-link img {
        width: 90%;
        height: 90%;
        object-fit: contain;
        margin: 0;
    }

    .side-column {
        display: none;
    }

    .social-platforms {
        grid-template-columns: repeat(3, 1fr);
    }

    .social-card {
        padding: 8px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .social-card i {
        font-size: 1.5rem;
    }

    .social-link span {
        font-size: 11px;
    }

    .platform-link span {
        display: none;
    }
} 