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

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
    color: #fff;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #1a1a1a, #000);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    flex-direction: column;
}

.choice-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.page-title {
    font-size: 2.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    text-align: center;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.choice {
    position: relative;
    width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.5s, box-shadow 0.5s;
}

.choice .screenshot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) brightness(0.6);
    transform: scale(1.05);
    transition: transform 0.8s ease, filter 0.6s ease;
    z-index: 1;
}

.choice::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}

.choice:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.choice:hover .screenshot {
    transform: scale(1.1);
    filter: saturate(1) brightness(0.75);
}

.choice-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.choice i {
    font-size: 3em;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.choice:hover i {
    transform: scale(1.2);
}

.choice h2.site-name {
    font-size: 2.2em;
    margin-bottom: 6px;
    line-height: 1.1;
    letter-spacing: 0.5px;
    transition: transform 0.3s;
}

.choice .domain {
    font-size: 0.95em;
    opacity: 0.8;
    margin-bottom: 10px;
}

.choice p {
    font-size: 1.1em;
    opacity: 0.8;
}

.hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    pointer-events: none;
}

.choice:hover .hover-effect {
    width: 200%;
    height: 200%;
}

.divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.line {
    width: 2px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
}

.or {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 968px) {
    .choice-container {
        flex-direction: column;
    }
    
    .divider {
        flex-direction: row;
        width: 100%;
        margin: 20px 0;
    }
    
    .line {
        width: 100px;
        height: 2px;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.choice {
    animation: float 6s ease-in-out infinite;
}

.studio {
    animation-delay: 0s;
}

.professional {
    animation-delay: -3s;
}
