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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
}

.emoji {
    font-size: 120px;
    display: inline-block;
    animation: rotate 3s ease-in-out infinite;
    margin-bottom: 30px;
}

h1 {
    font-size: 48px;
    color: #764ba2;
    margin-bottom: 10px;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    color: #764ba2;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: left;
}

thead {
    background-color: #764ba2;
    color: white;
}

th, td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

th {
    font-weight: 600;
    font-size: 16px;
}

td {
    font-size: 15px;
    color: #333;
}

tbody tr:hover {
    background-color: #f5f5f5;
}

a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: #764ba2;
    text-decoration: underline;
}

@keyframes rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 40px 30px;
    }

    h1 {
        font-size: 36px;
    }

    .emoji {
        font-size: 90px;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 28px;
    }

    .emoji {
        font-size: 70px;
    }
}
