@font-face {
    font-family: 'NRT';
    src: url('../fonts/nrtfont/NRT-Reg.eot');
    src: url('../fonts/nrtfont/NRT-Reg.eot?#iefix') format('embedded-opentype'),
        url('../fonts/nrtfont/NRT-Reg.woff') format('woff'),
        url('../fonts/nrtfont/NRT-Reg.ttf') format('truetype'),
        url('../fonts/nrtfont/NRT-Reg.svg#NRT-Reg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NRT';
    src: url('../fonts/nrtfont/NRT-Bd.eot');
    src: url('../fonts/nrtfont/NRT-Bd.eot?#iefix') format('embedded-opentype'),
        url('../fonts/nrtfont/NRT-Bd.woff') format('woff'),
        url('../fonts/nrtfont/NRT-Bd.ttf') format('truetype'),
        url('../fonts/nrtfont/NRT-Bd.svg#NRT-Bd') format('svg');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'NRT', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 30px;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }


}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 150px;
}

.title {
    text-align: center;
    color: #2a5298;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
}

/* CLOCK */
.clock-container {
    display: flex;
    justify-content: space-between;
    background: #f0f4f8;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 1px solid #dce1e6;
}

.clock-box {
    text-align: center;
    flex: 1;
    position: relative;
}

.clock-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #ccc;
}

.clock-label {
    font-size: 11px;
    color: #555;
    font-weight: bold;
    text-transform: uppercase;
}

.clock-val {
    font-family: 'Share Tech Mono', monospace;
    color: #d32f2f;
    font-size: 22px;
    text-shadow: 0 0 5px rgba(211, 47, 47, 0.2);
}

/* EXCHANGE BOARD */
.exchange-board {
    background: white;
    border: 1px solid #e1e4e8;
    border-radius: 16px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.board-header {
    background: #2a5298;
    color: white;
    padding: 12px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.rate-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: center;
    padding: 12px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.rate-row:last-child {
    border-bottom: none;
}

.rate-row {
    opacity: 0;
    animation: slideIn 0.5s ease-out forwards;
}

.rate-row:nth-child(1) {
    animation-delay: 0.1s;
}

.rate-row:nth-child(2) {
    animation-delay: 0.2s;
}

.rate-row:nth-child(3) {
    animation-delay: 0.3s;
}

.rate-row:nth-child(4) {
    animation-delay: 0.4s;
}

.rate-row:nth-child(5) {
    animation-delay: 0.5s;
}

.rate-row:nth-child(6) {
    animation-delay: 0.6s;
}

.rate-row:nth-child(7) {
    animation-delay: 0.7s;
}

.rate-row:nth-child(8) {
    animation-delay: 0.8s;
}

.rate-row:nth-child(9) {
    animation-delay: 0.9s;
}

.rate-row:nth-child(10) {
    animation-delay: 1.0s;
}

.curr-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.curr-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 50%;
}

.price-box {
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}

.buy {
    color: #28a745;
}

.sell {
    color: #dc3545;
}

/* PARTNERS */
.partners-container {
    margin-bottom: 25px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.partner-item {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.partner-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.partner-item:nth-child(1) {
    animation-delay: 0.2s;
}

.partner-item:nth-child(2) {
    animation-delay: 0.3s;
}

.partner-item:nth-child(3) {
    animation-delay: 0.4s;
}

.partner-item:nth-child(4) {
    animation-delay: 0.5s;
}

.partner-item:nth-child(5) {
    animation-delay: 0.6s;
}

.partner-item:nth-child(6) {
    animation-delay: 0.7s;
}

.partner-item:nth-child(7) {
    animation-delay: 0.8s;
}

.partner-item:nth-child(8) {
    animation-delay: 0.9s;
}

.partner-item:nth-child(9) {
    animation-delay: 1.0s;
}

.partner-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* SOCIAL */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link span {
    font-size: 11px;
    opacity: 0.9;
}

.social-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.korek {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.asiacell {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
}