/* SampMobile Launcher Custom Styles */
:root {
    --primary: #ff2e9b;     /* Logo'daki canlı pembe */
    --secondary: #2ecbff;   /* Logo'daki canlı mavi */
    --dark: #181828;        /* Logo'daki koyu siyah */
    --light: #f8f9fa;
    --primary-hover: #e0268a;
    --secondary-hover: #1fa3d7;
    --card-bg: #23233a;
    --card-border: #2ecbff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #181828 !important;
    color: #f8f9fa;
    min-height: 100vh;
}

/* Navbar Customization */
.navbar-dark {
    background: rgba(24,24,40,0.92) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px 0 #0004;
    border-bottom: 2.5px solid transparent;
    border-image: linear-gradient(90deg, #ff2e9b 0%, #2ecbff 100%);
    border-image-slice: 1;
    min-height: 72px;
    transition: background 0.2s, box-shadow 0.2s;
}
.navbar .navbar-brand img {
    height: 56px;
    margin-right: 18px;
    filter: drop-shadow(0 2px 8px #2ecbff33);
}
.navbar-nav .nav-link {
    font-size: 1.08rem;
    font-weight: 600;
    color: #f8f9fa !important;
    margin-right: 4px;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.18s;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
    color: #2ecbff !important;
}
.navbar-nav .nav-link.active::after, .navbar-nav .nav-link:hover::after {
    content: '';
    display: block;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff2e9b 0%, #2ecbff 100%);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.2s;
}
.navbar-nav .nav-link::after {
    content: '';
    display: block;
    height: 3px;
    border-radius: 2px;
    background: transparent;
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.2s;
}
.navbar .dropdown {
    margin-left: 18px;
}
.navbar .btn-outline-light {
    border-radius: 12px;
    font-weight: 600;
    padding: 8px 18px;
    background: rgba(44,44,64,0.7);
    color: #fff;
    border: 1.5px solid #2ecbff;
    transition: background 0.18s, color 0.18s, border 0.18s;
}
.navbar .btn-outline-light:hover, .navbar .btn-outline-light:focus {
    background: #2ecbff;
    color: #181828;
    border-color: #ff2e9b;
}
@media (max-width: 768px) {
    .navbar-dark {
        min-height: 56px;
        padding: 0.5rem 0.5rem;
    }
    .navbar .navbar-brand img {
        height: 40px;
        margin-right: 8px;
    }
}

/* Custom Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #181828;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
    color: #fff;
}

/* Hero Section Glassmorphism ve Modern Efektler */
.hero-section {
    background: linear-gradient(120deg, #ff2e9b99 0%, #2ecbff99 100%);
    color: #fff;
    padding: 80px 0 60px 0;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(24,24,40,0.25);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    border: 1.5px solid #ffffff22;
}
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 16px #0008;
}
.hero-content p.lead {
    font-size: 1.3rem;
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 2rem;
}
.hero-content .d-flex {
    justify-content: center;
}
.hero-bar {
    display: none;
}

/* Sağda büyük logo için */
.hero-section .col-md-5 img {
    max-width: 320px;
    opacity: 0.92;
    filter: drop-shadow(0 0 32px #2ecbff66);
}

/* Butonlara Glow ve Hover Efekti */
.btn-primary, .btn-secondary {
    font-size: 1.15rem;
    padding: 0.85rem 2.2rem;
    border-radius: 12px;
    box-shadow: 0 2px 16px #ff2e9b33, 0 0px 0 #2ecbff33;
    transition: all 0.18s;
}
.btn-primary:hover, .btn-secondary:hover {
    filter: brightness(1.15) drop-shadow(0 0 8px #2ecbff88);
    transform: scale(1.05);
}

/* Kutulara Cam Efekti ve İç Glow */
.stats-box, .card, .card-feature, .download-card {
    background: rgba(24,24,40,0.82);
    backdrop-filter: blur(4px);
    border-radius: 18px;
    box-shadow: 0 0 0 2px #23233a, 0 0 16px 2px #ff2e9b44, 0 0 32px 4px #2ecbff33;
    border: 1.5px solid #ffffff22;
}

/* Cards */
.card {
    border: none;
    border-radius: 14px;
    background: var(--card-bg);
    color: #fff;
    box-shadow: 0 6px 24px rgba(24,24,40,0.18);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 16px 32px rgba(46,203,255,0.10);
}

.card-server {
    border-left: 4px solid var(--card-border);
}

.card-feature {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
}

.card-feature i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

/* Stats */
.stats-box {
    text-align: center;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(24,24,40,0.10);
    color: #fff;
}

.stats-box .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stats-box .label {
    color: var(--secondary);
    font-size: 1rem;
}

/* Server Table */
.server-table th {
    background-color: var(--dark);
    color: var(--secondary);
    border: none;
}

.server-table tbody tr {
    transition: background-color 0.2s;
}

.server-table tbody tr:hover {
    background-color: rgba(46,203,255,0.08);
}

.server-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.status-online {
    background-color: #2ecbff;
}

.status-offline {
    background-color: #ff2e9b;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, var(--dark) 0%, var(--primary) 100%);
    color: #fff;
}

.footer a {
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--secondary) !important;
}

.social-icons li {
    margin-bottom: 8px;
}

.social-icons i {
    width: 25px;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--card-bg);
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(24,24,40,0.08);
    color: #fff;
}

.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* Dropdown styles */
.dropdown-menu {
    background-color: #2c3e50;
    border: 1px solid #34495e;
    padding: 0.5rem 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    animation: dropdownFade 0.2s ease-in-out;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #ecf0f1;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #34495e;
    color: #fff;
}

.dropdown-item.active {
    background-color: #3498db;
    color: #fff;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove all flag icon styles */
.flag-icon,
.flag-icon-tr,
.flag-icon-gb,
.flag-icon-ru,
.flag-icon-es,
.flag-icon-de {
    display: none;
}

/* Remove language selector styles */
.nav-link.dropdown-toggle {
    display: none;
}

/* Remove language selector button styles */
.navbar-dark .navbar-nav .nav-link .flag-icon {
    display: none;
}

.dropdown-menu .flag-icon {
    display: none;
}

/* Download cards */
.download-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--card-bg);
    color: #fff;
}

.download-card .icon {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    .stats-box .number {
        font-size: 2rem;
    }
}

/* Kart içi yazı kontrastı ve ferahlık */
.card, .stats-box, .card-feature, .download-card {
    color: #f8f9fa;
}

/* Özellik kutularına farklı arka planlar */
.feature-bg-1 { background: linear-gradient(135deg, #ff2e9b 0%, #2ecbff 100%); }
.feature-bg-2 { background: linear-gradient(135deg, #2ecbff 0%, #ffb347 100%); }
.feature-bg-3 { background: linear-gradient(135deg, #ffb347 0%, #43e97b 100%); }
.feature-bg-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.feature-bg-5 { background: linear-gradient(135deg, #38f9d7 0%, #ff2e9b 100%); }
.feature-bg-6 { background: linear-gradient(135deg, #ff2e9b 0%, #f7971e 100%); }
.feature-bg-7 { background: linear-gradient(135deg, #f7971e 0%, #2ecbff 100%); }
.feature-bg-8 { background: linear-gradient(135deg, #2ecbff 0%, #181828 100%); }
.card-feature { color: #fff; border: none; box-shadow: 0 4px 24px 0 #0002; }

/* Sosyal medya butonları */
.btn-group .btn {
    min-width: 150px;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
}

.btn-group .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-apple { background: #222; color: #fff; border: 1px solid #333; }
.btn-apple:hover { background: #333; color: #fff; border-color: #555; }

.btn-playstore { background: #43e97b; color: #fff; border: 1px solid #30b063; }
.btn-playstore:hover { background: #30b063; border-color: #289a55; }

.btn-discord { background: #5865F2; color: #fff; border: 1px solid #4450d0; }
.btn-discord:hover { background: #404eed; border-color: #3540b0; }

.btn-telegram { background: #229ED9; color: #fff; border: 1px solid #1c8cc7; }
.btn-telegram:hover { background: #1c8cc7; border-color: #1778b0; }

.btn-chat { background: #38f9d7; color: #181828; border: 1px solid #2ecbbb; }
.btn-chat:hover { background: #2ecbbb; color: #181828; border-color: #25a4a4; }

.btn-whatsapp { background: #25D366; color: #fff; border: 1px solid #1fa853; }
.btn-whatsapp:hover { background: #1fa853; border-color: #198c45; }

.btn-instagram { background: linear-gradient(45deg, #f7971e, #f44336, #833ab4); color: #fff; border: 1px solid transparent; }
.btn-instagram:hover { background: linear-gradient(45deg, #833ab4, #f44336, #f7971e); border-color: #a633b4; }

.btn-youtube { background: #FF0000; color: #fff; border: 1px solid #cc0000; }
.btn-youtube:hover { background: #cc0000; border-color: #a30000; }

/* Server List Global button - using a secondary color for consistency */
.btn-secondary {
    background: #2ecbff;
    border-color: #2ecbff;
    color: #181828;
}

.btn-secondary:hover {
    background: #1fa3d7;
    border-color: #1fa3d7;
    color: #fff;
}

.bi { font-size: 1.3em; margin-right: 0.3em; }

.featured-servers-section {
    background: #23233a;
    border-radius: 28px;
    box-shadow: 0 8px 32px 0 #0005;
    margin-top: 64px !important;
    margin-bottom: 64px !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 768px) {
    .featured-servers-section {
        padding-left: 8px;
        padding-right: 8px;
        border-radius: 16px;
    }
}

.features-section {
    background: #23233a;
    border-radius: 28px;
    box-shadow: 0 8px 32px 0 #0005;
    margin-top: 64px !important;
    margin-bottom: 64px !important;
    padding-top: 48px !important;
    padding-bottom: 48px !important;
    padding-left: 32px;
    padding-right: 32px;
    border: 2.5px solid #fff2;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    pointer-events: none;
    box-shadow: 0 0 32px 8px #ff2e9b55, 0 0 48px 12px #2ecbff55;
    opacity: 0.25;
    z-index: 0;
}
.features-section > * { position: relative; z-index: 1; }
.features-section .card-feature {
    border-radius: 2.7rem;
    padding: 30px;
    background: #1e1e2f;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    color: #fff;
    border: none;
}
.features-section .card-feature::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: 0;
    border-radius: 2.8rem;
    background: linear-gradient(135deg, #ff2e9b, #2ecbff, #ffb347);
    background-size: 300% 300%;
    animation: gradient-animation 6s ease infinite alternate;
    filter: blur(0.8px);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.features-section .card-feature:hover::before {
    opacity: 1;
}
.features-section .card-feature:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 45px rgba(46, 203, 255, 0.4), 0 0 0 4px rgba(255, 46, 155, 0.3);
    border-color: transparent;
}
.features-section .card-feature > * {
    position: relative;
    z-index: 1;
}
.features-section .card-feature i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: rgba(35, 36, 58, 0.8);
    color: #2ecbff;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(46, 203, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(46, 203, 255, 0.4);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}
.features-section .card-feature:hover i {
    background: #2ecbff;
    color: #181828;
    box-shadow: 0 4px 16px rgba(46, 203, 255, 0.6);
    border-color: #ff2e9b;
}
.features-section .card-feature h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
    color: #fff;
}
.features-section .card-feature p {
    font-size: 1.05rem;
    color: #e0e0e0;
    margin-bottom: 0;
}
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@media (max-width: 768px) {
    .features-section {
        padding: 30px 15px;
        border-radius: 20px;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
    }
    .features-section::before {
        display: none;
    }
    .features-section .card-feature {
        padding: 25px 15px;
        border-radius: 15px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transform: none !important;
        transition: box-shadow 0.2s ease;
        background: #1e1e2f;
    }
    .features-section .card-feature::before {
        display: none;
    }
    .features-section .card-feature:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        transform: none;
    }
    .features-section .card-feature i {
        font-size: 2rem;
        padding: 12px;
        box-shadow: 0 1px 4px rgba(46, 203, 255, 0.2);
        border: 1px solid rgba(46, 203, 255, 0.3);
    }
    .features-section .card-feature:hover i {
        box-shadow: 0 2px 8px rgba(46, 203, 255, 0.4);
        transform: none;
    }
    .features-section .card-feature h5 {
        font-size: 1.1rem;
    }
    .features-section .card-feature p {
        font-size: 0.95rem;
    }
}

.navbar,
.navbar * {
    z-index: 1050 !important;
}
.navbar .dropdown-menu {
    z-index: 2000 !important;
}
.navbar {
    overflow: visible !important;
}

.gallery-section {
    background: rgba(30,32,50,0.8);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 48px 24px;
    margin-bottom: 48px;
}
.gallery-img-box {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    background: #23243a;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}
.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
    border-radius: 16px;
}
.gallery-img-link:hover .gallery-img-box {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
@media (max-width: 768px) {
    .gallery-section {
        padding: 24px 6px;
        border-radius: 14px;
    }
    .gallery-img-box {
        min-height: 80px;
        border-radius: 10px;
    }
    .gallery-img-box img {
        border-radius: 10px;
    }
}

.gallery-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.gallery-img-masonry {
    width: 100%;
    aspect-ratio: 9/16;
    background: #23243a;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
}
.gallery-img-masonry img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.18s, transform 0.18s;
    border-radius: 18px;
}
.gallery-img-link:hover .gallery-img-masonry {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(46,203,255,0.18);
}
.gallery-img-link:hover img {
    filter: brightness(0.85) blur(1px);
}
@media (max-width: 768px) {
    .gallery-img-masonry {
        border-radius: 10px;
        aspect-ratio: 1/1;
    }
    .gallery-img-masonry img {
        border-radius: 10px;
    }
}

.phone-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: linear-gradient(160deg, #23243a 80%, #2ecbff22 100%);
    border-radius: 38px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 1.5px 0 #fff2 inset;
    padding: 18px 8px 28px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.22s cubic-bezier(.4,2,.3,1), box-shadow 0.22s;
    overflow: visible;
}
.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 6px;
    background: #222c;
    border-radius: 6px;
    z-index: 2;
    opacity: 0.7;
}
.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 12px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 36px;
    background: #23243a;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #2ecbff44;
    z-index: 2;
    opacity: 0.5;
}
.phone-frame:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 20px 48px 0 #2ecbff44, 0 2px 0 #fff2 inset;
}
.phone-frame:hover .gallery-img-masonry::after {
    opacity: 0.18;
}
.gallery-img-masonry {
    width: 100%;
    height: 100%;
    aspect-ratio: 9/16;
    background: #181828;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: box-shadow 0.18s;
}
.gallery-img-masonry::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #fff8 0%, #2ecbff33 100%);
    opacity: 0;
    transition: opacity 0.22s;
    pointer-events: none;
    border-radius: 28px;
    z-index: 2;
}
.gallery-img-masonry img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    transition: filter 0.18s, transform 0.18s;
}
@media (max-width: 768px) {
    .phone-frame {
        border-radius: 18px;
        padding: 8px 2px 12px 2px;
    }
    .gallery-img-masonry {
        border-radius: 12px;
    }
    .gallery-img-masonry img {
        border-radius: 12px;
    }
    .phone-frame::before {
        width: 36px; height: 4px; top: 5px;
    }
    .phone-frame::after {
        width: 18px; height: 18px; bottom: 6px;
    }
}

.gallery-title {
    font-family: 'Segoe UI', 'Montserrat', 'Poppins', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #ff2e9b 0%, #2ecbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 16px #2ecbff22;
}

.gallery-title-underline {
    display: block;
    margin: 0 auto 2.2rem auto;
    height: 5px;
    width: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff2e9b 0%, #2ecbff 100%);
    box-shadow: 0 2px 12px #2ecbff33;
}

.section-title-underline {
    display: block;
    margin: 0 auto 2.2rem auto;
    height: 5px;
    width: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff2e9b 0%, #2ecbff 100%);
    box-shadow: 0 2px 12px #2ecbff33;
}

.main-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Kenarlarda boşluk bırakmak için */
}

.modern-footer {
    background: rgba(24,24,40,0.95);
    backdrop-filter: blur(8px);
    border-top: 2.5px solid transparent;
    border-image: linear-gradient(90deg, #ff2e9b 0%, #2ecbff 100%);
    border-image-slice: 1;
    color: #f8f9fa;
    padding-top: 40px;
    padding-bottom: 30px;
}

/* Style for navigation links in the footer */
.modern-footer .list-unstyled a {
    color: #e0e0e0 !important;
    transition: color 0.2s;
    padding: 4px 0;
    display: inline-block; /* Ensure padding works */
}

.modern-footer .list-unstyled a:hover {
    color: var(--secondary) !important; /* Use blue for hover */
}

/* Style for social icon links in the footer */
.footer-icon-link {
    color: #e0e0e0;
    transition: color 0.2s, transform 0.2s;
    opacity: 0.9;
}
.footer-icon-link:hover {
    color: var(--secondary); /* Use blue for hover */
    transform: scale(1.15);
    opacity: 1;
}

/* Adjust spacing and text styles */
.modern-footer h5 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.modern-footer .small {
    font-size: 0.9rem;
}

.modern-footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .modern-footer {
        padding-top: 30px;
        padding-bottom: 20px;
    }
    .modern-footer .d-flex.gap-3 {
        justify-content: center;
    }
    .modern-footer .text-center.text-muted.small {
        text-align: center !important;
    }
}

/* Ultra Modern Footer */
.ultra-footer {
    position: relative;
    background: rgba(24,24,40,0.85);
    backdrop-filter: blur(12px);
    border-top: 2.5px solid transparent;
    border-image: linear-gradient(90deg, #ff2e9b 0%, #2ecbff 100%);
    border-image-slice: 1;
    padding: 60px 0 30px;
    margin-top: 80px;
    overflow: hidden;
}

/* Remove the old glow effect since we're using border-image now */
.footer-glow {
    display: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    max-width: 400px;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ff2e9b, #2ecbff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-nav-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff2e9b, #2ecbff);
    transition: width 0.3s ease;
}

.footer-nav-link:hover {
    color: #fff;
}

.footer-nav-link:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}

.social-icon.discord:hover {
    background: #5865F2;
    box-shadow: 0 0 20px rgba(88,101,242,0.4);
}

.social-icon.facebook:hover {
    background: #1877F2;
    box-shadow: 0 0 20px rgba(24,119,242,0.4);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 0 20px rgba(220,39,67,0.4);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 768px) {
    .ultra-footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
}

/* Favorite button styles */
.btn-favorite {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
}

.btn-favorite:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-favorite.active {
    background: #000;
    border-color: #000;
    color: #fff;
}

.btn-favorite.active i {
    color: #fff;
}

/* Add specific styles for apple.php page */
.apple-page-content .text-center.my-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.apple-page-content h1 {
    font-size: 3rem; /* Larger main title */
    font-weight: 800;
    color: #fff; /* White color */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* More prominent text shadow */
}

.apple-page-content .lead {
    font-size: 1.4rem; /* Slightly larger lead text */
    color: rgba(255, 255, 255, 0.9); /* Lighter text color */
}

/* Adjust spacing for sections */
.apple-page-content .features-section,
.apple-page-content .requirements-card,
.apple-page-content .container.mb-5 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

/* Refine download card appearance on apple.php */
.apple-page-content .download-card {
     background: rgba(35, 36, 58, 0.9); /* Slightly darker background */
     backdrop-filter: blur(15px); /* Adjust blur */
     border-radius: 25px; /* Slightly less rounded */
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 0 1.5px rgba(255, 255, 255, 0.1); /* Enhanced shadow */
}

.apple-page-content .download-card .icon {
    font-size: 4rem; /* Larger icon */
    color: #a2a2a2; /* Apple grey color */
    filter: drop-shadow(0 0 15px rgba(162, 162, 162, 0.5)); /* Subtle glow */
}

.apple-page-content .download-card .card-title {
    font-size: 1.5rem; /* Larger title */
    font-weight: 700;
}

.apple-page-content .download-card .card-text {
    font-size: 1.1rem; /* Larger text */
    color: rgba(255, 255, 255, 0.8);
}

/* Ensure button styles are consistent */
.apple-page-content .btn-primary {
    /* Already styled in general .btn-primary rules */
}

/* Add more specific styles for requirements card on apple.php */
.apple-page-content .requirements-card {
    background: rgba(24, 24, 40, 0.9); /* Darker background for requirements card */
    backdrop-filter: blur(12px); /* Adjusted blur */
    border-radius: 20px; /* Adjusted border radius */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08); /* Adjusted shadow */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
}

.apple-page-content .requirements-card .req-box {
    background: rgba(35, 36, 58, 0.8); /* Slightly lighter background for req-box */
    border-radius: 15px; /* Adjusted border radius */
    padding: 25px; /* Adjusted padding */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Subtle border */
}

.apple-page-content .requirements-card .req-header i {
    color: #2ecbff; /* Use secondary color for icons */
    text-shadow: 0 0 10px rgba(46, 203, 255, 0.5); /* Blue glow for icons */
}

.apple-page-content .requirements-card .req-list li i {
    color: #43e97b; /* Use a different color for list item icons */
    text-shadow: 0 0 8px rgba(67, 233, 123, 0.5); /* Green glow for list item icons */
}

/* Mobile adjustments for apple.php content */
@media (max-width: 768px) {
    .apple-page-content .text-center.my-5 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .apple-page-content h1 {
        font-size: 2rem; /* Adjust title size on mobile */
    }

    .apple-page-content .lead {
        font-size: 1.1rem; /* Adjust lead text size on mobile */
    }

    .apple-page-content .download-card {
        padding: 20px; /* Adjust padding on mobile */
        backdrop-filter: none; /* Remove blur on mobile for performance */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Simpler shadow on mobile */
    }

    .apple-page-content .download-card .icon {
        font-size: 3rem; /* Adjust icon size on mobile */
    }

    .apple-page-content .download-card .card-title {
        font-size: 1.3rem; /* Adjust title size on mobile */
    }

    .apple-page-content .download-card .card-text {
        font-size: 1rem; /* Adjust text size on mobile */
    }
    
    /* Mobile adjustments for requirements card on apple.php */
    .apple-page-content .requirements-card {
        backdrop-filter: none; /* Remove blur on mobile */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Simpler shadow on mobile */
        border: none; /* Remove border on mobile */
    }

    .apple-page-content .requirements-card .req-box {
        padding: 20px; /* Adjust padding on mobile */
        border: none; /* Remove border on mobile */
    }

    .apple-page-content .requirements-card .req-header i {
        font-size: 1.5rem; /* Adjust icon size on mobile */
    }

    .apple-page-content .requirements-card .req-list li {
        padding: 8px; /* Adjust padding on mobile */
        gap: 10px; /* Adjust gap on mobile */
    }

    .apple-page-content .requirements-card .req-list li i {
        font-size: 1rem; /* Adjust icon size on mobile */
    }
}