* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--main-bg);
    font-family: 'Press Start 2P', system-ui;
    font-size: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Header with banner */
header {
    position: relative;
    padding: 10px 0px 0px 0px;
    text-align: center;
}

h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    color: var(--font-main);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.0rem;
    color: var(--font-main);
}

/* Social buttons */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 0;
    color: var(--font-alt);
    font-size: 1.8rem;
    text-decoration: none;
    border: 3px solid var(--border-line);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.generic-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 0;
    color: var(--font-alt);
    font-size: 1.8rem;
    border: 3px solid var(--border-line);
    overflow: hidden;
    transition: all 0.3s;
    width: fit-content;
    margin: auto;
    padding: 5px 20px;
}

.generic-btn:hover {
    transform: translateY(-5px);
    background-color: var(--highlight);
    border-color: var(--highlight);
}

.social-btn:hover {
    transform: translateY(-5px);
    background-color: var(--highlight);
    border-color: var(--highlight);
}

.social-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.social-btn:disabled {
    visibility: hidden;
    pointer-events: none;
}

/* Separator */
.separator {
    height: 4px;
    width: 80%;
    margin: 30px auto;
    background: var(--border-line);
    position: relative;
}

.separator::before, .separator::after {
    content: "◆";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--retro-accent);
    font-size: 1.5rem;
}

.separator::before {
    left: -20px;
}

.separator::after {
    right: -20px;
}

/* Projects section */
.projects-section {
    padding: 40px 20px;
}

h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: var(--font-main);
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

h2::before {
    content: "◆";
    position: absolute;
    top: 50%;
    transform: translate3d(-150%, -60%, 0);
    color: var(--retro-accent);
    font-size: 1.5rem;
}

h2::after {
    content: "◆";
    position: absolute;
    top: 50%;
    transform: translate3d(50%, -60%, 0);
    color: var(--retro-accent);
    font-size: 1.5rem;
}

/* Footer */
footer {
    padding: 30px;
    text-align: center;
    background: var(--main-bg);
    border-top: 4px solid var(--border-line);
    font-size: 1.2rem;
    color: var(--highlight);
    margin-top: 40px;
}

/* Responsive design */
@media (max-width: 768px) {
    .duo-name {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .duo-name {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Team Section Styles */
.team-section {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    position: relative;
    font-size: 1.4rem;
    text-align: center;
}

.team-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background: var(--body-alt);
    border: 3px solid var(--border-line);
    position: relative;
}

.slogan {
    flex: 1;
    min-width: 250px;
    padding: 10px;
    margin: 20px;
    background: var(--body-alt);
    border: 3px solid var(--border-line);
    position: relative;
}

.member-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 0px;
    border: 4px solid var(--border-line);
    background: #0f1120;
    position: relative;
    overflow: hidden;
}

.member-name {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: var(--retro-accent);
    margin-bottom: 0px;
}

.member-role {
    font-size: 0.5rem;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social .social-btn {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-title {
        font-size: 1.3rem;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
    
    .member-role {
        font-size: 1.1rem;
    }
    }

    @media (max-width: 480px) {
    .team-section {
        padding: 20px;
    }
    
    .team-title {
        font-size: 1.1rem;
    }
    
    .member-icon {
        width: 100px;
        height: 100px;
    }
}

/* Game card styles */
.game-card {
    display: flex;
    border: 4px solid var(--border-line);
    background: var(--body-alt);
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.game-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--border-line);
}

.game-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: var(--font-alt);
    background-color: #000;
    margin-bottom: 0px;
    padding: 10px;
}

.game-type {
    display: inline-block;
    background: var(--tag-bg);
    color: var(--font-main);
    padding: 10px 5px;
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--border-line);
}

.game-description {
    flex: 1;
    font-size: 0.8rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.game-description p {
    margin-bottom: 15px;
}

.game-text {
    padding : 10px;
    display: flex;
    flex-direction: column;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
    padding: 10px;
}

.download-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-label {
    font-size: 2.0rem;
    color: var(--font-main);
    text-transform: uppercase;
}

.icon-group {
    display: flex;
    gap: 8px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .game-card {
        flex-direction: column;
    }

    .game-content {
        padding: 20px;
    }
    
    .game-meta {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 1.2rem;
    }

    .game-description {
        font-size: 1.1rem;
    }

    .download-icons {
        flex-direction: column;
        align-items: flex-start;
    }
}