/* 777 Rummy - Modern CSS Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #0f172a;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, #1e40af 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #7c3aed 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, #059669 0%, transparent 50%);
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.logo:hover {
    color: #3b82f6;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #94a3b8;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.1);
}

.nav-links a[aria-current="page"] {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 16px 0;
    margin-bottom: 32px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #64748b;
}

.breadcrumb-list a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb-list a:hover {
    color: #60a5fa;
}

/* Main Content */
main {
    background: transparent;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    border: none;
    backdrop-filter: none;
    position: relative;
}

.hero {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #059669 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #ffffff;
}

.hero-image {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-height: 400px;
    object-fit: cover;
    width: 100%;
    max-width: 800px;
}

.hero-main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    color: #e2e8f0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    text-transform: none;
    letter-spacing: 0;
}

.btn-primary {
    background: #ffffff;
    color: #1e40af;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary:hover {
    background: #f8fafc;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Content Sections */
.content {
    padding: 0;
    margin-bottom: 120px;
}

section {
    margin-bottom: 80px;
}

h2 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3b82f6;
    border-radius: 2px;
}

h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 24px;
    margin-top: 48px;
    font-weight: 600;
    letter-spacing: -0.01em;
    position: relative;
}

h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
}

p {
    margin-bottom: 24px;
    font-size: 18px;
    text-align: left;
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin: 64px 0;
}

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    line-height: 1.3;
}

.feature-card h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}

.feature-card p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.2;
    transform: scale(1.2);
}

/* Game Variants Icon */
.game-variants-icon::after {
    content: '🃏';
    font-size: 28px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Payment Security Icon */
.payment-security-icon::after {
    content: '🔒';
    font-size: 28px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Customer Support Icon */
.customer-support-icon::after {
    content: '🎧';
    font-size: 28px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Mobile Gaming Icon */
.mobile-gaming-icon::after {
    content: '📱';
    font-size: 28px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Fair Play Icon */
.fair-play-icon::after {
    content: '⚖️';
    font-size: 28px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Tournaments Icon */
.tournaments-icon::after {
    content: '🏆';
    font-size: 28px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

/* Registration Section Styles */
.registration-section {
    margin: 32px 0;
}

.registration-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 32px;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.registration-text {
    flex: 2;
}

.registration-text h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.registration-text p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.registration-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.registration-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-height: 300px;
    object-fit: cover;
    width: 100%;
}

.registration-main-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Login Section Styles */
.login-section {
    margin: 32px 0;
}

.login-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 32px;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.login-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.login-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-height: 300px;
    object-fit: cover;
    width: 100%;
}

.login-main-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.login-text {
    flex: 2;
}

.login-text h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.login-text p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Gaming Atmosphere Section Styles */
.gaming-atmosphere-section {
    margin: 32px 0;
}

.gaming-atmosphere-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 32px;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.gaming-atmosphere-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.gaming-atmosphere-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-height: 300px;
    object-fit: cover;
    width: 100%;
}

.gaming-atmosphere-main-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gaming-atmosphere-text {
    flex: 2;
}

.gaming-atmosphere-text h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.gaming-atmosphere-text p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Rewards Section Styles */
.rewards-section {
    margin: 32px 0;
}

.rewards-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 32px;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.rewards-text {
    flex: 2;
}

.rewards-text h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.rewards-text p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.rewards-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.rewards-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-height: 300px;
    object-fit: cover;
    width: 100%;
}

.rewards-main-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* FAQ Styles */
.faq {
    background: rgba(30, 41, 59, 0.5);
    padding: 48px;
    border-radius: 20px;
    margin: 64px 0;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.faq-item {
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    padding-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin: 8px -16px;
}

.faq-question {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.faq-question::before {
    content: 'Q:';
    color: #3b82f6;
    margin-right: 8px;
    font-weight: 700;
}

.faq-question:hover {
    color: #60a5fa;
}

.faq-answer {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 16px;
    position: relative;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 64px 0;
    margin-top: 120px;
    position: relative;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
}

.footer-links a:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

footer p {
    opacity: 0.7;
    font-size: 14px;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero-main-image {
        max-height: 300px;
        border-radius: 15px;
    }
    
    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
    }
    
    .feature-icon::after {
        font-size: 24px;
    }
    
    .registration-content,
    .login-content,
    .gaming-atmosphere-content,
    .rewards-content {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }
    
    .registration-image,
    .login-image,
    .gaming-atmosphere-image,
    .rewards-image {
        order: -1;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    .footer-links {
        gap: 16px;
    }
    
    .faq {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-main-image {
        max-height: 250px;
        border-radius: 12px;
    }
    
    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0;
    }
    
    .feature-icon::after {
        font-size: 20px;
    }
    
    .registration-content,
    .login-content,
    .gaming-atmosphere-content,
    .rewards-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .registration-main-image,
    .login-main-image,
    .gaming-atmosphere-main-image,
    .rewards-main-image {
        max-height: 250px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .nav-links {
        gap: 8px;
    }
    
    .nav-links a {
        padding: 4px 8px;
        font-size: 13px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 20px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #764ba2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus, button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Additional Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced hover effects */
.feature-card, .faq-item, .nav-links a {
    animation: fadeInUp 0.6s ease-out;
}

/* Gradient text effects */
.gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced shadows */
.enhanced-shadow {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Enhanced button styles */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-enhanced:hover::before {
    left: 100%;
}

.btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* New Modern Effects */
.particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: float-particle 6s infinite linear;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Glassmorphism cards */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Neon glow effect */
.neon-glow {
    box-shadow: 
        0 0 5px rgba(102, 126, 234, 0.5),
        0 0 10px rgba(102, 126, 234, 0.3),
        0 0 15px rgba(102, 126, 234, 0.2);
}

/* Magnetic hover effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic:hover {
    transform: scale(1.05) rotate(1deg);
}

/* Gradient borders */
.gradient-border {
    position: relative;
    background: white;
    border-radius: 16px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}
