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

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

.container {
    max-width: 680px;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.header h1 {
    font-size: 28px;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 700;
}

.header p {
    font-size: 16px;
    color: #718096;
    font-weight: 400;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 24px;
    text-decoration: none;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.link-card:hover::before {
    opacity: 1;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.link-card:active {
    transform: translateY(-2px);
}

.link-icon {
    font-size: 32px;
    flex-shrink: 0;
    z-index: 1;
    transition: transform 0.3s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.1);
}

.link-content {
    flex: 1;
    z-index: 1;
}

.link-card:hover .link-content h3,
.link-card:hover .link-content p {
    color: white;
}

.link-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #2d3748;
    transition: color 0.3s ease;
}

.link-content p {
    font-size: 14px;
    color: #718096;
    transition: color 0.3s ease;
}

.link-arrow {
    font-size: 20px;
    color: #a0aec0;
    transition: all 0.3s ease;
    z-index: 1;
}

.link-card:hover .link-arrow {
    color: white;
    transform: translateX(4px);
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #f56565 0%, #ed8936 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    z-index: 1;
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.footer p {
    color: #718096;
    font-size: 14px;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.back-button:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateX(-4px);
}

.amazon-badge {
    background: linear-gradient(135deg, #ff9900 0%, #ff6b00 100%);
}

.fire-badge {
    background: linear-gradient(135deg, #f56565 0%, #ed8936 100%);
}

/* Responsive Design */
@media (max-width: 640px) {
    .container {
        padding: 30px 20px;
    }
    
    .header h1 {
        font-size: 24px;
    }
    
    .link-card {
        padding: 16px 20px;
    }
    
    .link-icon {
        font-size: 28px;
    }
    
    .link-content h3 {
        font-size: 16px;
    }
    
    .link-content p {
        font-size: 13px;
    }
}
