:root {
    --bg-color: #000000;
    --card-bg: #111111;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent-color: #ffffff;
    --border-color: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-image: url('background.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* تعتيم الخلفية لضمان وضوح النصوص */
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    margin-bottom: 50px;
    text-align: center;
}

.logo-container {
    width: 140px;
    margin: 0 auto 5px;
    /* مسافة قليلة جداً تحت اللوغو */
    display: flex;
    justify-content: center;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

.business-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
    text-align: center;
}

.tagline {
    color: var(--text-secondary);
    font-size: 14px;
}

.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    text-decoration: none;
    color: var(--text-primary);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.link-card:active {
    transform: scale(0.98);
    background-color: #1a1a1a;
}

.link-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.link-content i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.link-card span {
    font-size: 16px;
    font-weight: 600;
}

.arrow-icon {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Minimalist icon colors */
.website i {
    color: #3b82f6;
}

.whatsapp i {
    color: #22c55e;
}

.instagram i {
    color: #e1306c;
}

.facebook i {
    color: #1877f2;
}

.google-maps i {
    color: #ea4335;
}

.waze i {
    color: #33ccff;
}

.footer {
    margin-top: auto;
    padding-top: 60px;
    color: var(--text-secondary);
    font-size: 12px;
}

/* Simple Entrance */
.link-card {
    opacity: 0;
    transform: translateY(10px);
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}