:root {
    --primary-color: #1a237e;
    --primary-light: #534bae;
    --primary-dark: #000051;
    --secondary-color: #f5f5f5;
    --text-color: #333;
    --text-light: #666;
    --accent-color: #4caf50;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #534bae 100%);
    --gradient-hover: linear-gradient(135deg, #534bae 0%, #1a237e 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    color: #333;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(26, 35, 126, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 2.2rem 3rem 0 3rem;
}

.logo-container {
    background: white;
    padding: 0.8rem 2rem;
    padding-bottom: 1.4rem;
    border-radius: 20px;
    display: inline-block;
    margin: 1rem 0 4rem 0;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.15);
}

.logo-container p {
    margin-top: 4.9px;
    color: #666;
}

.logo {
    max-width: 220px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-container {
        padding: 0.6rem 1.5rem;
        padding-bottom: 1rem;
        margin: 0.5rem 0 3rem 0;
    }

    .logo {
        max-width: 180px;
    }

    .logo-container p {
        margin-top: 0.3rem;
        font-size: 0.9rem;
    }
}

.category-section {
    margin-bottom: 4rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.category-section:hover {
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.1);
}

.category-title {
    font-size: 1.5rem;
    color: #1a237e;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #1a237e;
    border-radius: 2px;
    display: inline-block;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
}

.brand-box {
    background: rgba(248, 249, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.brand-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.brand-box:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 15px 35px rgba(26, 35, 126, 0.15);
}

.brand-box:hover::before {
    opacity: 0.05;
}

.brand-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(26, 35, 126, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.brand-box:hover .brand-icon {
    transform: scale(1.1) rotate(360deg);
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.2);
}

.brand-box h2 {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 500;
    color: #1a237e;
    text-align: center;
}

.brand-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

/* Coming Soon styles */
.coming-soon {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
    cursor: default !important;
    filter: grayscale(0.3);
}

.coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
}

.coming-soon-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #1a237e;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.coming-soon-dots {
    display: flex;
    justify-content: center;
}

.coming-soon-dots span {
    opacity: 0.5;
    animation: dots 1.5s infinite;
    margin: 0 1px;
    font-size: 1rem;
}

.coming-soon-dots span:nth-child(2) {
    animation-delay: 0.5s;
}

.coming-soon-dots span:nth-child(3) {
    animation-delay: 1s;
}

@keyframes dots {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: rgba(255, 255, 255, 0.98);
    width: 90%;
    max-width: 600px;
    margin: auto;
    padding: 2.5rem;
    border-radius: 25px;
    position: relative;
    transform: translateY(-50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #333;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a237e;
    text-align: center;
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section h3 {
    color: #0d47a1;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.modal-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-section ul {
    list-style-type: none;
    padding-left: 0;
}

.modal-section li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding-left: 1rem;
}

.modal-section li:hover {
    background: rgba(26, 35, 126, 0.05);
    transform: translateX(5px);
}

.modal-section li i {
    margin-right: 1rem;
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.modal-section li:hover i {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .container {
        padding: 1rem 1rem 0 1rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .brand-box {
        height: auto;
        min-height: 250px;
    }

    .brand-box h2 {
        font-size: 1.5rem;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

/* Security measures */
*::selection {
    background: transparent;
    color: inherit;
}

*::-moz-selection {
    background: transparent;
    color: inherit;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Footer Styles */
.footer {
    background: white;
    margin-top: auto;
    width: 100%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.footer-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link i {
    font-size: 1.1rem;
    color: #1a237e;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #1a237e;
}

.footer-link:hover i {
    transform: translateY(-2px);
}

.footer-credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #666;
    font-size: 0.95rem;
    padding: 2rem 0;
    width: 100%;
}

.footer-special-link {
    color: #1a237e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-special-link:hover {
    color: #fff !important;
    text-decoration: underline;
}

.donate-button {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.2);
    position: relative;
    overflow: hidden;
}

.donate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
    background: var(--gradient-hover);
}

.donate-button i,
.donate-button span {
    color: white;
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .footer-credits {
        padding: 1.5rem 0;
    }
}

.disclaimer-text {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.6;
    margin-top: 0.5rem;
    opacity: 0.9;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .footer-credits {
        padding: 1.5rem 0;
    }

    .disclaimer-text {
        font-size: 0.85rem;
    }
} 