:where([class^="ri-"])::before { content: "\f3c2"; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a1a0a;
    color: #e0e0e0;
}

.gold-text {
    color: #ffd700;
}

.gold-border {
    border-color: #ffd700;
}

.gold-bg {
    background-color: #ffd700;
}

.dark-green {
    background-color: #0a1a0a;
}

.darker-green {
    background-color: #051205;
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.custom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #111;
    border: 1px solid #ffd700;
    border-radius: 4px;
}

.container:hover input ~ .checkmark {
    background-color: #222;
}

.container input:checked ~ .checkmark {
    background-color: #ffd700;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #111;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #fff;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #ffd700;
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
}

.back-to-top.visible {
    display: flex;
}

.countdown-item {
    background: linear-gradient(145deg, #0a1a0a, #0f2f0f);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Modern Button Styles */
.rounded-button {
    border-radius: 8px !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Primary Button (Gold) */
.bg-primary {
    background: linear-gradient(45deg, #ffd700, #ffb700) !important;
    color: #000 !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.bg-primary:hover {
    background: linear-gradient(45deg, #ffb700, #ffd700) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Secondary Button (Dark) */
.bg-gray-800 {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bg-gray-800:hover {
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a) !important;
    border-color: rgba(255, 215, 0, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Button Active State */
.bg-primary:active,
.bg-gray-800:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Button Focus State */
.bg-primary:focus,
.bg-gray-800:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

/* Button Disabled State */
.bg-primary:disabled,
.bg-gray-800:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
} 