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

body {
    font-family: 'Tajawal', system-ui, -apple-system, 'Segoe UI', 'Tahoma', sans-serif;
}

.glass-card-custom {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(225, 187, 74, 0.3);
}

.grid-pattern-custom {
    background-image: 
        linear-gradient(rgba(225, 187, 74, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(225, 187, 74, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
}

.btn-ripple {
    position: relative;
    overflow: hidden;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-captain-hover:hover {
    background: linear-gradient(105deg, #2a0a18 0%, #040002 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 32px -12px rgba(0, 0, 0, 0.55);
    border-color: rgba(225, 187, 74, 0.6);
}

.btn-client-hover:hover {
  
    transform: translateY(-4px);
    box-shadow: 0 18px 28px -12px rgba(0, 0, 0, 0.12);
   
}

.gradient-text {
    background: linear-gradient(135deg, #040002 0%, #c9a73a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.smooth-transition {
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.btn:hover .btn-icon {
    transform: translateX(-4px) scale(1.03);
}

@media (max-width: 640px) {
    .btn-touch {
        min-height: 44px;
    }
}

.btn:active {
    transform: translateY(2px);
    transition-duration: 0.08s;
}

.btn:focus-visible {
    outline: 3px solid var(--color-primary, #e1bb4a);
    outline-offset: 4px;
    border-radius: 0;
}

.logo-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.18));
}

@media (max-width: 480px) {
    .glass-card-custom {
        padding: 2rem 1.25rem;
    }
    
    .buttons-group {
        gap: 1.2rem;
    }
}

@media (min-width: 1400px) {
    .glass-card-custom {
        max-width: 880px;
    }
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #e1bb4a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c9a73a;
}