* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(45deg, #1a1a1a, #2c3e50);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    text-align: center;
    max-width: 800px;
    width: 90%;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.score-board {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.score {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
    min-width: 150px;
}

.score p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.score span {
    font-size: 2rem;
    font-weight: bold;
    color: #4CAF50;
}

.result {
    margin: 2rem 0;
    font-size: 1.5rem;
    min-height: 2rem;
}

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

.choice {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.emoji {
    font-size: 4rem;
    display: inline-block;
    transition: transform 0.3s;
}

.choice:hover .emoji {
    transform: scale(1.2) translateY(-5px);
}

.moves {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
}

.move {
    text-align: center;
}

.move p {
    margin-bottom: 1rem;
}

#reset-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

#reset-btn:hover {
    background: #45a049;
}

.contract-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.08);
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
}
.contract-label {
    font-weight: 600;
    color: #4CAF50;
}
#contract-address {
    font-family: 'Poppins', monospace;
    background: rgba(0,0,0,0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    letter-spacing: 0.03em;
}
#copy-contract {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    cursor: pointer;
    font-size: 1.1rem;
    margin-left: 0.3rem;
    transition: background 0.2s;
}
#copy-contract:hover {
    background: #4CAF50;
    color: #fff;
}
.links-section {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.social-link .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.social-link:hover .icon {
    transform: scale(1.15) rotate(-6deg);
    box-shadow: 0 4px 16px rgba(76,175,80,0.18);
}
@media (max-width: 600px) {
    .choices {
        gap: 1rem;
    }
    
    .choice img {
        width: 60px;
        height: 60px;
    }
    
    .move img {
        width: 80px;
        height: 80px;
    }
    .contract-section {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.95rem;
    }
    .links-section {
        gap: 0.7rem;
        margin-top: 1.2rem;
    }
    .social-link .icon {
        width: 32px;
        height: 32px;
    }
} 