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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #003b3f 0%, #001e20 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
    gap: 32px;
}

/* Header Section */
.header {
    text-align: center;
    width: 100%;
}

.header-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.crown {
    font-size: 15px;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #00b8bd 0%, #40d6da 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
}

.description {
    font-size: 14px;
    color: #8acfd2;
    margin-bottom: 16px;
}

/* Animated description */
.animated-description {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 5px #00a2a6, 0 0 10px #00b8bd;
    background: linear-gradient(135deg, #00a2a6, #40d6da);
    padding: 10px;
    border-radius: 8px;
    margin-top: 5px;
    letter-spacing: 0.5px;
    animation: pulse-turquoise 2s infinite;
}

@keyframes pulse-turquoise {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 184, 189, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(0, 184, 189, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 184, 189, 0); }
}

/* Cards */
.card {
    width: 100%;
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.glass-card {
    background: rgba(240, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #2d2d2d;
}

.main-card {
    background: rgba(0, 59, 63, 0.95);
    border: 1px solid rgba(0, 184, 189, 0.2);
}

/* Link Items */
.link-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.link-item:last-child {
    margin-bottom: 0;
}

.link-item:hover {
    transform: translateX(4px);
}

.number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #00b8bd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.url {
    flex: 1;
    font-weight: 500;
    color: #2d2d2d;
}

.link-btn {
    background: #00b8bd;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 184, 189, 0.3);
}

.link-btn:hover {
    background: #00a2a6;
    box-shadow: 0 0 30px rgba(0, 184, 189, 0.5);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    text-align: center;
    margin-bottom: 24px;
}

.crown-icon {
    font-size: 32px;
    margin-bottom: 16px;
    width: 64px;
    height: 64px;
    background: rgba(0, 184, 189, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.main-title {
    font-size: 18px;
    font-weight: 600;
    color: #00b8bd;
    margin-bottom: 16px;
}

.main-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    text-align: left;
}

.highlight-box {
    background: rgba(0, 184, 189, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.highlight-text {
    color: #00b8bd;
    font-weight: 600;
    font-size: 14px;
}

/* Main Button */
.main-button {
    width: 100%;
    background: linear-gradient(135deg, #00b8bd 0%, #00a2a6 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 184, 189, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.main-button:hover {
    background: linear-gradient(135deg, #00a2a6 0%, #008c90 100%);
    box-shadow: 0 0 30px rgba(0, 184, 189, 0.5);
    transform: translateY(-2px);
}

.main-button:active {
    transform: translateY(0);
}

/* Material Icons */
.material-symbols-outlined {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 16px;
        gap: 24px;
    }
    
    .card {
        padding: 20px;
    }
    
    .logo {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 18px;
    }
}
