/* HarborRiders CSS - Pirate-Western-Steampunk Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', serif;
    background-color: #1a1512;
    color: #daa520;
    overflow-x: hidden;
    position: relative;
}

/* Age Verification Popup */
.harborriders-age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(46, 90, 87, 0.95), rgba(26, 21, 18, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.harborriders-age-container {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 600"><rect fill="%23cd853f" width="400" height="600" opacity="0.1"/></svg>');
    background-color: #3d2914;
    border: 5px solid #8b6914;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(205, 133, 63, 0.3);
    max-width: 500px;
}

.harborriders-compass-decoration {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #daa520, #8b6914);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.5);
}

.harborriders-compass-decoration::before {
    content: "N";
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #3d2914;
}

.harborriders-age-title {
    font-family: 'Pirata One', cursive;
    font-size: 36px;
    color: #ff8c00;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.harborriders-age-text {
    font-size: 18px;
    color: #cd853f;
    margin-bottom: 30px;
    font-family: 'Cinzel', serif;
}

.harborriders-skull-divider {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: radial-gradient(circle, #8b6914, #5c3317);
    border-radius: 50%;
}

.harborriders-age-question {
    font-size: 22px;
    color: #daa520;
    margin-bottom: 30px;
    font-family: 'Creepster', cursive;
    letter-spacing: 1px;
}

.harborriders-age-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.harborriders-btn-yes, .harborriders-btn-no {
    padding: 15px 40px;
    font-size: 20px;
    font-family: 'Pirata One', cursive;
    border: 3px solid #8b6914;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.harborriders-btn-yes {
    background: linear-gradient(45deg, #cd853f, #ff8c00);
    color: #1a1512;
}

.harborriders-btn-yes:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
}

.harborriders-btn-no {
    background: linear-gradient(45deg, #2e5a57, #4f7f6b);
    color: #daa520;
}

.harborriders-btn-no:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 10px 30px rgba(79, 127, 107, 0.5);
}

.harborriders-rope-decoration {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 40px;
    background: repeating-linear-gradient(
        45deg,
        #8b6914,
        #8b6914 10px,
        #5c3317 10px,
        #5c3317 20px
    );
    border-radius: 50%;
}

/* Vertical Navigation */
.harborriders-vertical-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100px;
    background: linear-gradient(180deg, #3d2914 0%, #1a1512 100%);
    border-right: 5px solid #8b6914;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.8);
}

.harborriders-compass-nav {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, #daa520, #8b6914);
    border-radius: 50%;
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.5);
    animation: harborriders-compass-glow 3s ease-in-out infinite;
}

@keyframes harborriders-compass-glow {
    0%, 100% { box-shadow: 0 5px 15px rgba(218, 165, 32, 0.5); }
    50% { box-shadow: 0 5px 30px rgba(218, 165, 32, 0.8); }
}

.harborriders-compass-needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 50px;
    background: #3d2914;
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.harborriders-nav-list {
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.harborriders-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #cd853f;
    transition: all 0.3s ease;
    position: relative;
}

.harborriders-nav-link:hover {
    color: #ff8c00;
    transform: translateX(5px);
}

.harborriders-nav-link.active {
    color: #daa520;
}

.harborriders-nav-link.active::after {
    content: "";
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
    background: #daa520;
}

.harborriders-icon {
    font-size: 28px;
    margin-bottom: 5px;
}

.harborriders-text {
    font-size: 12px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.harborriders-lantern-nav {
    width: 50px;
    height: 70px;
    background: linear-gradient(180deg, #ff8c00 0%, #cd853f 100%);
    border-radius: 25px 25px 40% 40%;
    position: relative;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.5);
    animation: harborriders-lantern-swing 4s ease-in-out infinite;
}

@keyframes harborriders-lantern-swing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Parallax Layers */
.harborriders-parallax-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.harborriders-fog-layer-1,
.harborriders-fog-layer-2,
.harborriders-fog-layer-3 {
    position: absolute;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 800"><path d="M0,400 Q250,300 500,400 T1000,400" fill="none" stroke="%23708090" stroke-width="100" opacity="0.1"/></svg>');
    animation: harborriders-fog-drift 60s linear infinite;
}

.harborriders-fog-layer-1 {
    animation-duration: 60s;
    opacity: 0.3;
}

.harborriders-fog-layer-2 {
    animation-duration: 45s;
    opacity: 0.2;
    top: 20%;
}

.harborriders-fog-layer-3 {
    animation-duration: 30s;
    opacity: 0.1;
    top: 40%;
}

@keyframes harborriders-fog-drift {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.harborriders-ghost-ships {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 800"><path d="M100,400 L150,350 L200,400 Z" fill="%232f4f4f" opacity="0.2"/><path d="M800,500 L850,450 L900,500 Z" fill="%232f4f4f" opacity="0.15"/></svg>');
    animation: harborriders-ship-float 90s linear infinite;
}

@keyframes harborriders-ship-float {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

.harborriders-gears-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Main Content */
.harborriders-main-content {
    margin-left: 100px;
    min-height: 100vh;
    position: relative;
}

/* Hero Section */
.harborriders-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px;
}

.harborriders-weathered-paper {
    background: linear-gradient(45deg, #cd853f 0%, #daa520 50%, #cd853f 100%);
    padding: 60px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: rotate(-1deg);
    overflow: hidden;
}

.harborriders-weathered-paper::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%233d2914" opacity="0.1"/></svg>');
    z-index: -1;
}

.harborriders-main-title {
    font-family: 'Pirata One', cursive;
    font-size: 80px;
    color: #3d2914;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.harborriders-subtitle {
    font-family: 'Creepster', cursive;
    font-size: 24px;
    color: #5c3317;
    text-align: center;
    letter-spacing: 2px;
}

.harborriders-steam-pipes {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #4f7f6b 0%, #2e5a57 100%);
    border-radius: 50%;
    animation: harborriders-steam-release 3s ease-in-out infinite;
}

@keyframes harborriders-steam-release {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.harborriders-swinging-lantern {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 60px;
    background: radial-gradient(circle, #ff8c00, #cd853f);
    border-radius: 20px 20px 50% 50%;
    animation: harborriders-lantern-swing 4s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.6);
}

.harborriders-hero-cta {
    margin-top: 40px;
}

.harborriders-treasure-btn {
    background: linear-gradient(45deg, #8b6914 0%, #daa520 50%, #8b6914 100%);
    border: 3px solid #5c3317;
    padding: 20px 50px;
    border-radius: 50px;
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #1a1512;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.harborriders-treasure-btn:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.5);
}

.harborriders-treasure-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.harborriders-treasure-btn:hover::before {
    animation: harborriders-shine 0.5s ease;
}

@keyframes harborriders-shine {
    from { left: -50%; }
    to { left: 150%; }
}

/* About Section */
.harborriders-about-section {
    padding: 100px 50px;
    position: relative;
}

.harborriders-rope-border {
    border: 10px solid transparent;
    border-image: repeating-linear-gradient(
        45deg,
        #8b6914,
        #8b6914 10px,
        #5c3317 10px,
        #5c3317 20px
    ) 10;
    padding: 50px;
    background: rgba(61, 41, 20, 0.5);
    position: relative;
}

.harborriders-section-title {
    font-family: 'Pirata One', cursive;
    font-size: 48px;
    color: #daa520;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}


.harborriders-content-wrapper {
    position: relative;
}

.harborriders-story-text {
    font-size: 20px;
    line-height: 1.8;
    color: #cd853f;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.harborriders-gear-decoration {
    position: absolute;
    background: radial-gradient(circle, #4f7f6b, #2e5a57);
    border-radius: 50%;
}

.gear-1 {
    width: 80px;
    height: 80px;
    top: -100px;
    left: -40px;
    animation: harborriders-gear-rotate 10s linear infinite;
}

.gear-2 {
    width: 60px;
    height: 60px;
    bottom: -30px;
    right: -30px;
    animation: harborriders-gear-rotate 8s linear infinite reverse;
}

@keyframes harborriders-gear-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Games Section */
.harborriders-games-section {
    padding: 100px 50px;
    background: linear-gradient(180deg, rgba(46, 90, 87, 0.2), rgba(61, 41, 20, 0.3));
}

.harborriders-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.harborriders-game-card {
    perspective: 1000px;
    height: 400px;
}

.harborriders-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.harborriders-game-card:hover .harborriders-card-inner {
    transform: rotateY(180deg);
}

.harborriders-card-front,
.harborriders-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.harborriders-card-front {
    background: linear-gradient(135deg, #3d2914 0%, #5c3317 100%);
    border: 3px solid #8b6914;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.harborriders-card-back {
    background: linear-gradient(135deg, #2e5a57 0%, #4f7f6b 100%);
    border: 3px solid #daa520;
    transform: rotateY(180deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.harborriders-treasure-chest {
    width: 100px;
    height: 100px;
    background: url("./Slot Adventurer/icons/icon-512.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin: 0 auto 30px auto;
    position: relative;
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.5);
}

.harborriders-cannon {
    width: 100px;
    height: 100px;
    background: url("./FisherMan Slot/icons/icon-512.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin: 0 auto 30px auto;
    position: relative;
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.5);
}

.harborriders-stealth {
    width: 100px;
    height: 100px;
    background: url("./Slot Movie/icons/icon-512.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin: 0 auto 30px auto;
    position: relative;
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.5);
}

.harborriders-game-title {
    font-family: 'Pirata One', cursive;
    font-size: 32px;
    color: #daa520;
    margin-bottom: 15px;
}

.harborriders-game-desc {
    font-size: 16px;
    color: #cd853f;
}

.harborriders-play-btn {
    background: linear-gradient(45deg, #ff8c00, #cd853f);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Pirata One', cursive;
    font-size: 20px;
    color: #1a1512;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.harborriders-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.6);
}

/* Features Section */
.harborriders-features {
    padding: 100px 50px;
    position: relative;
}
.harborriders-features .harborriders-section-title{
    font-family: 'Pirata One', cursive;
    font-size: 48px;
    color: #5c3317;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.harborriders-feature-card{
    color: #5c3317;
}

.harborriders-parchment {
    background: linear-gradient(to bottom, #daa520, #cd853f);
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 40px;
}
section{
    margin-bottom: 40px;
}

.harborriders-parchment::before,
.harborriders-parchment::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        #8b6914 10px,
        #8b6914 20px
    );
}

.harborriders-parchment::before {
    top: 0;
    left: 0;
}

.harborriders-parchment::after {
    bottom: 0;
    left: 0;
}

.harborriders-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.harborriders-feature-item {
    text-align: center;
    padding: 30px;
    background: rgba(61, 41, 20, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.harborriders-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.harborriders-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.harborriders-feature-item h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #ff8c00;
    margin-bottom: 15px;
}

.harborriders-feature-item p {
    color: #cd853f;
    font-size: 16px;
}

/* Footer */
.harborriders-footer {
    background: linear-gradient(180deg, #1a1512 0%, #0d0907 100%);
    padding: 60px 50px 30px;
    border-top: 5px solid #8b6914;
    margin-top: 100px;
}

.harborriders-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.harborriders-footer-title {
    font-family: 'Pirata One', cursive;
    font-size: 28px;
    color: #daa520;
    margin-bottom: 20px;
}

.harborriders-footer-links {
    list-style: none;
}

.harborriders-footer-links li {
    margin-bottom: 15px;
}

.harborriders-footer-links a {
    color: #cd853f;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.harborriders-footer-links a:hover {
    color: #ff8c00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.harborriders-contact-info {
    color: #cd853f;
    line-height: 1.8;
    font-size: 16px;
}

.harborriders-contact-info a {
    color: #daa520;
    text-decoration: none;
}

.harborriders-contact-info a:hover {
    color: #ff8c00;
}

.harborriders-footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #8b6914;
    color: #708090;
}

.harborriders-anchor-decoration {
    font-size: 32px;
    margin-top: 10px;
    animation: harborriders-anchor-rock 3s ease-in-out infinite;
}

@keyframes harborriders-anchor-rock {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .harborriders-vertical-nav {
        width: 100%;
        height: 80px;
        flex-direction: row;
        padding: 0 20px;
        border-right: none;
        border-bottom: 5px solid #8b6914;
    }
    
    .harborriders-compass-nav {
        margin: 0 20px 0 0;
    }
    
    .harborriders-nav-list {
        flex-direction: row;
        gap: 20px;
    }
    
    .harborriders-lantern-nav {
        display: none;
    }
    
    .harborriders-main-content {
        margin-left: 0;
        margin-top: 80px;
    }
    
    .harborriders-main-title {
        font-size: 48px;
    }
    
    .harborriders-weathered-paper {
        padding: 30px;
    }
}










/* Continuation of responsive styles */
@media (max-width: 768px) {
    .harborriders-founders-grid,
    .harborriders-team-grid,
    .harborriders-awards-grid,
    .harborriders-timeline-events,
    .harborriders-dept-grid,
    .harborriders-support-grid {
        grid-template-columns: 1fr;
    }
    
    .harborriders-contact-methods {
        grid-template-columns: 1fr;
    }
    
    .harborriders-featured-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Map Section Styles */
.harborriders-map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.harborriders-map-placeholder {
    background: linear-gradient(135deg, #3d2914, #5c3317);
    border: 3px solid #8b6914;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.harborriders-compass-rose {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #daa520, #8b6914);
    border-radius: 50%;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.harborriders-compass-rose::before {
    content: "N";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Pirata One', cursive;
    font-size: 36px;
    color: #3d2914;
}

.harborriders-compass-rose::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border: 3px solid #3d2914;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.harborriders-map-text {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #daa520;
    margin-bottom: 15px;
}

.harborriders-coordinates {
    font-family: 'Creepster', cursive;
    font-size: 18px;
    color: #cd853f;
}

.harborriders-location-details {
    background: rgba(61, 41, 20, 0.5);
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 40px;
}

.harborriders-location-details h3 {
    font-family: 'Pirata One', cursive;
    font-size: 28px;
    color: #ff8c00;
    margin-bottom: 20px;
}

.harborriders-visit-info {
    list-style: none;
    padding: 0;
}

.harborriders-visit-info li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 105, 20, 0.3);
    color: #cd853f;
}

.harborriders-visit-info li:last-child {
    border-bottom: none;
}

.harborriders-visit-info strong {
    color: #daa520;
}

/* Privacy Page Specific Styles */
.harborriders-privacy-pledge {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(139, 105, 20, 0.2));
    border: 3px double #8b6914;
    padding: 40px;
    margin: 30px 0;
    text-align: center;
    border-radius: 20px;
}

.harborriders-pledge-text {
    font-size: 20px;
    line-height: 1.8;
    color: #daa520;
    font-style: italic;
    font-family: 'Cinzel', serif;
}

/* Data Grid Styles */
.harborriders-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.harborriders-data-category {
    background: linear-gradient(135deg, rgba(61, 41, 20, 0.8), rgba(92, 49, 23, 0.6));
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.harborriders-data-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.harborriders-data-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.harborriders-data-category h3 {
    font-family: 'Pirata One', cursive;
    font-size: 26px;
    color: #ff8c00;
    margin-bottom: 20px;
    text-align: center;
}

.harborriders-data-list {
    list-style: none;
    padding: 0;
}

.harborriders-data-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: #cd853f;
}

.harborriders-data-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #daa520;
    font-size: 20px;
}

/* Usage Grid */
.harborriders-usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.harborriders-usage-item {
    background: rgba(61, 41, 20, 0.5);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #8b6914;
    transition: all 0.3s ease;
}

.harborriders-usage-item:hover {
    background: rgba(61, 41, 20, 0.7);
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.harborriders-usage-item h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #daa520;
    margin-bottom: 15px;
}

/* Protection Measures */
.harborriders-protection-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.harborriders-protection-item {
    background: linear-gradient(135deg, #3d2914, #5c3317);
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.harborriders-protection-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.harborriders-protection-item:hover::before {
    opacity: 1;
    animation: harborriders-pulse 2s ease-in-out infinite;
}

@keyframes harborriders-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.harborriders-protection-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.harborriders-protection-item h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #ff8c00;
    margin-bottom: 15px;
}

/* Rights Grid */
.harborriders-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.harborriders-right-card {
    background: rgba(218, 165, 32, 0.1);
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.harborriders-right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(218, 165, 32, 0.3);
    background: rgba(218, 165, 32, 0.15);
}

.harborriders-right-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #daa520;
    margin-bottom: 15px;
}

/* Cookie Types */
.harborriders-cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.harborriders-cookie-type {
    background: rgba(61, 41, 20, 0.4);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #8b6914;
}

.harborriders-cookie-type h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #ff8c00;
    margin-bottom: 15px;
}

/* Privacy Contact Methods */
.harborriders-privacy-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.harborriders-privacy-method {
    background: rgba(139, 105, 20, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.harborriders-privacy-method h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #daa520;
    margin-bottom: 15px;
}

/* Terms Page Specific Styles */
.harborriders-terms-notice {
    background: rgba(218, 165, 32, 0.1);
    border: 2px solid #8b6914;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.harborriders-effective-date {
    font-style: italic;
    color: #cd853f;
    margin-top: 15px;
    font-size: 14px;
}

.harborriders-terms-subsection {
    margin-bottom: 30px;
    padding-left: 20px;
}

.harborriders-terms-subsection h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 20px;
    color: #daa520;
    margin-bottom: 15px;
}

/* Gaming Rules Cards */
.harborriders-gaming-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.harborriders-rule-card {
    background: linear-gradient(135deg, rgba(61, 41, 20, 0.7), rgba(92, 49, 23, 0.5));
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 35px;
}

.harborriders-rule-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 26px;
    color: #ff8c00;
    margin-bottom: 20px;
}

.harborriders-rule-card ul {
    list-style: none;
    padding: 0;
}

.harborriders-rule-card ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #cd853f;
}

.harborriders-rule-card ul li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff8c00;
}

/* Financial Grid */
.harborriders-financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.harborriders-financial-item {
    background: rgba(46, 90, 87, 0.2);
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.harborriders-financial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.harborriders-financial-item h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #daa520;
    margin-bottom: 15px;
}

/* Responsible Content */
.harborriders-responsible-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.harborriders-responsible-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(139, 105, 20, 0.3);
    color: #cd853f;
}

/* Disclaimer Boxes */
.harborriders-disclaimer-box {
    background: rgba(255, 76, 76, 0.1);
    border: 2px solid #ff4c4c;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.harborriders-disclaimer-box h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #ff8c00;
    margin-bottom: 15px;
}

/* Dispute Process */
.harborriders-dispute-process {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.harborriders-dispute-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 30px;
    background: rgba(61, 41, 20, 0.3);
    border-radius: 20px;
    border: 2px solid #8b6914;
}

.harborriders-step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #daa520;
    color: #1a1512;
    border-radius: 50%;
    font-family: 'Pirata One', cursive;
    font-size: 28px;
    line-height: 50px;
    margin-bottom: 15px;
}

/* RSG Page Styles */
.harborriders-rsg-pledge {
    background: linear-gradient(135deg, rgba(79, 127, 107, 0.2), rgba(46, 90, 87, 0.1));
    border: 3px solid #4f7f6b;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
}

/* Assessment Grid */
.harborriders-assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.harborriders-assessment-item {
    background: rgba(61, 41, 20, 0.5);
    border: 2px solid #8b6914;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.harborriders-assessment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.harborriders-question-number {
    width: 50px;
    height: 50px;
    background: #daa520;
    color: #1a1512;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    flex-shrink: 0;
}

.harborriders-assessment-result {
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid #ff8c00;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
}

/* Tools Grid */
.harborriders-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.harborriders-tool-card {
    background: linear-gradient(135deg, #3d2914, #5c3317);
    border: 3px solid #8b6914;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.harborriders-tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.2), transparent);
    transition: left 0.5s ease;
}

.harborriders-tool-card:hover::before {
    left: 100%;
}

.harborriders-tool-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.harborriders-tool-btn {
    background: linear-gradient(45deg, #8b6914, #daa520);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #1a1512;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.harborriders-tool-btn:hover {
    background: linear-gradient(45deg, #daa520, #ff8c00);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.5);
}

/* Tips Grid */
.harborriders-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.harborriders-tip-item {
    padding: 30px;
    background: rgba(61, 41, 20, 0.4);
    border-radius: 15px;
    border: 1px solid #8b6914;
    transition: all 0.3s ease;
}

.harborriders-tip-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.harborriders-tip-item h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #ff8c00;
    margin-bottom: 15px;
}

/* Support Organizations */
.harborriders-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.harborriders-support-org {
    background: linear-gradient(135deg, rgba(61, 41, 20, 0.6), rgba(92, 49, 23, 0.4));
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 35px;
}

.harborriders-support-org h3 {
    font-family: 'Pirata One', cursive;
    font-size: 28px;
    color: #daa520;
    margin-bottom: 25px;
    text-align: center;
}

.harborriders-org-details {
    background: rgba(218, 165, 32, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.harborriders-org-details h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 20px;
    color: #ff8c00;
    margin-bottom: 10px;
}

/* Education Content */
.harborriders-edu-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(139, 105, 20, 0.1);
    border-radius: 15px;
}

.harborriders-edu-section h3 {
    font-family: 'Pirata One', cursive;
    font-size: 26px;
    color: #daa520;
    margin-bottom: 20px;
}

.harborriders-edu-section ul {
    list-style: none;
    padding: 0;
}

.harborriders-edu-section ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #cd853f;
}

.harborriders-edu-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-size: 18px;
}

/* Help Options */
.harborriders-help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.harborriders-help-method {
    background: rgba(79, 127, 107, 0.2);
    border: 2px solid #4f7f6b;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.harborriders-help-method h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #4f7f6b;
    margin-bottom: 15px;
}

.harborriders-help-reminder {
    background: rgba(255, 140, 0, 0.1);
    border: 2px dashed #ff8c00;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

/* Opt-Out Page Styles */
.harborriders-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.harborriders-option-card {
    background: linear-gradient(135deg, rgba(61, 41, 20, 0.7), rgba(92, 49, 23, 0.5));
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.harborriders-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.harborriders-option-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.harborriders-preference-list {
    margin: 20px 0;
}

.harborriders-checkbox-label {
    display: block;
    padding: 10px 0;
    color: #cd853f;
    cursor: pointer;
    transition: color 0.3s ease;
}

.harborriders-checkbox-label:hover {
    color: #daa520;
}

.harborriders-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.harborriders-break-duration {
    width: 100%;
    padding: 12px;
    background: rgba(26, 21, 18, 0.7);
    border: 2px solid #8b6914;
    border-radius: 10px;
    color: #daa520;
    font-family: 'Cinzel', serif;
    font-size: 16px;
}

.harborriders-option-btn {
    background: linear-gradient(45deg, #8b6914, #daa520);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #1a1512;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.harborriders-option-btn:hover {
    background: linear-gradient(45deg, #daa520, #ff8c00);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.5);
}

/* Complete Options */
.harborriders-complete-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.harborriders-complete-option {
    padding: 40px;
    background: rgba(61, 41, 20, 0.5);
    border-radius: 20px;
    border: 2px solid #8b6914;
}

.harborriders-complete-btn {
    background: linear-gradient(45deg, #8b6914, #daa520);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Pirata One', cursive;
    font-size: 20px;
    color: #1a1512;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.harborriders-complete-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.5);
}

.harborriders-complete-btn.danger {
    background: linear-gradient(45deg, #ff4c4c, #cc0000);
    color: white;
}

.harborriders-complete-btn.danger:hover {
    box-shadow: 0 15px 35px rgba(255, 76, 76, 0.5);
}

/* Exclusion Options */
.harborriders-exclusion-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.harborriders-exclusion-card {
    background: linear-gradient(135deg, #3d2914, #5c3317);
    border: 3px solid #8b6914;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
}

.harborriders-exclusion-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 26px;
    color: #ff8c00;
    margin-bottom: 10px;
}

.harborriders-exclusion-card p {
    font-size: 18px;
    color: #daa520;
    margin-bottom: 20px;
    font-weight: 600;
}

.harborriders-exclusion-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.harborriders-exclusion-card ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #cd853f;
}

.harborriders-exclusion-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #daa520;
    font-size: 20px;
}

.harborriders-exclusion-cta {
    text-align: center;
    margin-top: 40px;
}

.harborriders-exclusion-link {
    font-size: 20px;
    color: #daa520;
    text-decoration: none;
    border-bottom: 2px solid #daa520;
    transition: all 0.3s ease;
}

.harborriders-exclusion-link:hover {
    color: #ff8c00;
    border-bottom-color: #ff8c00;
}

/* FAQ Accordion */
.harborriders-faq-accordion {
    margin-top: 40px;
}

.harborriders-optout-faq .harborriders-faq-item {
    background: rgba(61, 41, 20, 0.4);
    border: 1px solid #8b6914;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.harborriders-optout-faq .harborriders-faq-item:hover {
    background: rgba(61, 41, 20, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.harborriders-optout-faq .harborriders-faq-item h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #ff8c00;
    margin-bottom: 15px;
    cursor: pointer;
}

/* Alternative Methods */
.harborriders-alt-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.harborriders-alt-method {
    background: rgba(139, 105, 20, 0.2);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #8b6914;
}

.harborriders-alt-method h3 {
    font-family: 'Pirata One', cursive;
    font-size: 26px;
    color: #daa520;
    margin-bottom: 20px;
}

/* Farewell Message */
.harborriders-farewell {
    padding: 80px 50px;
    text-align: center;
}

.harborriders-farewell-message {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(139, 105, 20, 0.2));
    border: 3px double #8b6914;
    border-radius: 30px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.harborriders-farewell-message h2 {
    font-family: 'Pirata One', cursive;
    font-size: 42px;
    color: #daa520;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.harborriders-farewell-message p {
    font-size: 20px;
    line-height: 1.8;
    color: #cd853f;
    font-family: 'Cinzel', serif;
}

.harborriders-farewell-signature {
    margin-top: 40px;
    font-family: 'Creepster', cursive;
    font-size: 24px;
    color: #ff8c00;
}

/* Additional Responsive Styles */
@media (max-width: 1024px) {
    .harborriders-map-container {
        grid-template-columns: 1fr;
    }
    
    .harborriders-dispute-process {
        flex-direction: column;
    }
    
    .harborriders-exclusion-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .harborriders-main-title {
        font-size: 36px;
    }
    
    .harborriders-section-title {
        font-size: 32px;
    }
    
    .harborriders-options-grid,
    .harborriders-data-grid,
    .harborriders-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .harborriders-farewell-message {
        padding: 30px;
    }
}




/* Quote Box Styles */
.harborriders-quote-box {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(139, 105, 20, 0.2));
    border-left: 5px solid #daa520;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    font-style: italic;
}

.harborriders-quote-box::before {
    content: "⚓";
    position: absolute;
    top: -70px;
    left: 20px;
    font-size: 80px;
    color: rgba(218, 165, 32, 0.3);
    font-family: 'Pirata One', cursive;
}

.harborriders-quote-box blockquote {
    margin: 0;
    color: #cd853f;
    font-size: 18px;
    line-height: 1.8;
}

/* Founders Grid */
.harborriders-founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.harborriders-founder-card {
    background: linear-gradient(135deg, rgba(61, 41, 20, 0.9), rgba(92, 49, 23, 0.7));
    border: 3px solid #8b6914;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.harborriders-founder-portrait {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #daa520, #8b6914);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.harborriders-founder-portrait.pirate::after {
    content: "🏴‍☠️";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
}

.harborriders-founder-portrait.inventor::after {
    content: "⚙️";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
}

.harborriders-founder-portrait.outlaw::after {
    content: "🤠";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
}

.harborriders-founder-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 28px;
    color: #ff8c00;
    margin-bottom: 10px;
}

.harborriders-founder-role {
    font-family: 'Creepster', cursive;
    font-size: 18px;
    color: #daa520;
    margin-bottom: 20px;
}

/* Extended Timeline */
.harborriders-extended-timeline {
    margin-top: 50px;
}

.harborriders-era {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(61, 41, 20, 0.3);
    border-radius: 20px;
    border: 2px solid #8b6914;
}

.harborriders-era h3 {
    font-family: 'Pirata One', cursive;
    font-size: 36px;
    color: #daa520;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.harborriders-timeline-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.harborriders-event {
    background: rgba(139, 105, 20, 0.2);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #8b6914;
    transition: all 0.3s ease;
}

.harborriders-event:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background: rgba(139, 105, 20, 0.4);
}

.harborriders-date {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #ff8c00;
    display: block;
    margin-bottom: 10px;
}

.harborriders-event h4 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #daa520;
    margin-bottom: 10px;
}

/* Mission & Values */
.harborriders-mission-content {
    margin-top: 40px;
}

.harborriders-mission.harborriders-section-title{
    font-family: 'Pirata One', cursive;
    font-size: 36px;
    color: #5c3317;
    text-align: center;
    margin-bottom: 30px;
}

.harborriders-mission-statement {
    background: rgba(218, 165, 32, 0.1);
    border: 2px dashed #8b6914;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
}

.harborriders-mission-statement h3 {
    font-family: 'Pirata One', cursive;
    font-size: 32px;
    color: #3d2914;
    margin-bottom: 20px;
}

.harborriders-mission-statement p {
    font-size: 20px;
    line-height: 1.8;
    color: #5c3317;
    font-style: italic;
}

.harborriders-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.harborriders-value-item {
    padding: 30px;
    background: rgba(61, 41, 20, 0.5);
    border-radius: 15px;
    border: 2px solid #8b6914;
    transition: all 0.3s ease;
}

.harborriders-value-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.harborriders-value-item h4 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #daa520;
    margin-bottom: 15px;
}

/* Team Grid */
.harborriders-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.harborriders-team-member {
    background: linear-gradient(135deg, #3d2914, #5c3317);
    border: 3px solid #8b6914;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.harborriders-member-portrait {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #daa520, #8b6914);
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.harborriders-team-member h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #ff8c00;
    margin-bottom: 10px;
}

.harborriders-member-role {
    font-family: 'Creepster', cursive;
    color: #daa520;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Awards Section */
.harborriders-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.harborriders-award-item {
    background: rgba(218, 165, 32, 0.1);
    border: 2px solid #daa520;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.harborriders-award-item:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.4);
}

.harborriders-award-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.harborriders-award-item h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #ff8c00;
    margin-bottom: 10px;
}

/* Contact Page Styles */
.harborriders-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.harborriders-contact-form {
    background: rgba(61, 41, 20, 0.3);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #8b6914;
}

.harborriders-form-group {
    margin-bottom: 25px;
}

.harborriders-form-group label {
    display: block;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #daa520;
    margin-bottom: 10px;
    font-size: 16px;
}

.harborriders-form-group input,
.harborriders-form-group select,
.harborriders-form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(26, 21, 18, 0.7);
    border: 2px solid #8b6914;
    border-radius: 10px;
    color: #daa520;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.harborriders-form-group input:focus,
.harborriders-form-group select:focus,
.harborriders-form-group textarea:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
    background: rgba(26, 21, 18, 0.9);
}

.harborriders-submit-btn {
    background: linear-gradient(45deg, #8b6914, #daa520, #8b6914);
    background-size: 200% 100%;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Pirata One', cursive;
    font-size: 20px;
    color: #1a1512;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    transition: all 0.3s ease;
    animation: harborriders-gradient-shift 3s ease-in-out infinite;
}

.harborriders-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.5);
}

/* Contact Methods */
.harborriders-contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.harborriders-contact-method {
    background: rgba(139, 105, 20, 0.2);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #8b6914;
    transition: all 0.3s ease;
}

.harborriders-contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.harborriders-method-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.harborriders-contact-method h4 {
    font-family: 'Pirata One', cursive;
    font-size: 20px;
    color: #ff8c00;
    margin-bottom: 15px;
}

.harborriders-contact-method a {
    color: #daa520;
    text-decoration: none;
    transition: color 0.3s ease;
}

.harborriders-contact-method a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

/* Department Grid */
.harborriders-dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.harborriders-dept-card {
    background: linear-gradient(135deg, rgba(61, 41, 20, 0.7), rgba(92, 49, 23, 0.5));
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.harborriders-dept-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.harborriders-dept-card:hover::before {
    opacity: 1;
}

.harborriders-dept-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: #daa520;
}

.harborriders-dept-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.harborriders-dept-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 26px;
    color: #ff8c00;
    margin-bottom: 15px;
}

.harborriders-dept-contact {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #daa520;
    font-size: 18px;
    margin: 15px 0 10px;
}

.harborriders-dept-hours {
    font-size: 14px;
    color: #cd853f;
    font-style: italic;
}

/* FAQ Grid */
.harborriders-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.harborriders-faq-item {
    padding: 30px;
    background: rgba(61, 41, 20, 0.4);
    border-radius: 15px;
    border: 1px solid #8b6914;
    transition: all 0.3s ease;
}

.harborriders-faq-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.harborriders-faq-item h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #ff8c00;
    margin-bottom: 15px;
}

/* Social Links */
.harborriders-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.harborriders-social {
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.harborriders-social:hover {
    transform: translateY(-5px) rotate(10deg);
    filter: drop-shadow(0 5px 15px rgba(218, 165, 32, 0.5));
}

/* Certification Badges */
.harborriders-cert-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.harborriders-cert {
    background: rgba(218, 165, 32, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #daa520;
    border: 1px solid #8b6914;
}

/* Responsive Adjustments for Complex Pages */
@media (max-width: 1200px) {
    .harborriders-timeline-item {
        width: 100%;
        margin: 20px 0;
    }
    
    .harborriders-timeline-item::before {
        display: none;
    }
    
    .harborriders-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRIVACY PAGE SPECIFIC STYLES
   ======================================== */

.harborriders-privacy-intro {
    padding: 100px 50px;
    background: linear-gradient(180deg, transparent, rgba(46, 90, 87, 0.05));
}

.harborriders-privacy-pledge {
    background: linear-gradient(135deg, rgba(79, 127, 107, 0.2), rgba(46, 90, 87, 0.1));
    border: 3px solid #4f7f6b;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.harborriders-privacy-pledge::before {
    content: "🔒";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    opacity: 0.1;
}

.harborriders-pledge-text {
    font-size: 20px;
    line-height: 1.8;
    color: #daa520;
    font-style: italic;
    font-family: 'Cinzel', serif;
}

/* Data Collection Section */
.harborriders-data-section {
    padding: 100px 50px;
    background: rgba(61, 41, 20, 0.05);
}

.harborriders-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.harborriders-data-category {
    background: linear-gradient(135deg, rgba(61, 41, 20, 0.8), rgba(92, 49, 23, 0.6));
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.harborriders-data-category::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1), transparent);
    animation: harborriders-data-glow 15s linear infinite;
}

@keyframes harborriders-data-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.harborriders-data-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.harborriders-data-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.harborriders-data-category h3 {
    font-family: 'Pirata One', cursive;
    font-size: 26px;
    color: #ff8c00;
    margin-bottom: 20px;
    text-align: center;
}

.harborriders-data-list {
    list-style: none;
    padding: 0;
}

.harborriders-data-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: #cd853f;
    font-size: 15px;
    line-height: 1.6;
}

.harborriders-data-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #daa520;
    font-size: 20px;
}

/* Usage Section */
.harborriders-usage-section {
    padding: 100px 50px;
}

.harborriders-usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.harborriders-usage-item {
    background: rgba(61, 41, 20, 0.5);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #8b6914;
    transition: all 0.3s ease;
    text-align: center;
}

.harborriders-usage-item:hover {
    background: rgba(61, 41, 20, 0.7);
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.harborriders-usage-item h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #daa520;
    margin-bottom: 15px;
}

.harborriders-usage-item p {
    color: #cd853f;
    line-height: 1.6;
}

/* Protection Section */
.harborriders-protection-section {
    padding: 100px 50px;
    background: linear-gradient(180deg, rgba(46, 90, 87, 0.1), rgba(61, 41, 20, 0.1));
}

.harborriders-protection-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.harborriders-protection-item {
    background: linear-gradient(135deg, #3d2914, #5c3317);
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.harborriders-protection-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.harborriders-protection-item:hover::before {
    opacity: 1;
    animation: harborriders-pulse 2s ease-in-out infinite;
}

@keyframes harborriders-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.harborriders-protection-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.harborriders-protection-item h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #ff8c00;
    margin-bottom: 15px;
}

.harborriders-protection-item p {
    color: #cd853f;
    line-height: 1.6;
}

/* Rights Section */
.harborriders-rights-section {
    padding: 100px 50px;
}

.harborriders-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.harborriders-right-card {
    background: rgba(218, 165, 32, 0.1);
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.harborriders-right-card::after {
    content: "✓";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: rgba(218, 165, 32, 0.3);
}

.harborriders-right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(218, 165, 32, 0.3);
    background: rgba(218, 165, 32, 0.15);
}

.harborriders-right-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #daa520;
    margin-bottom: 15px;
}

.harborriders-right-card p {
    color: #cd853f;
    line-height: 1.6;
}

/* Cookies Section */
.harborriders-cookies-section {
    padding: 100px 50px;
    background: rgba(61, 41, 20, 0.05);
}

.harborriders-cookie-info {
    max-width: 1000px;
    margin: 0 auto;
}

.harborriders-cookie-intro {
    font-size: 18px;
    color: #cd853f;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

.harborriders-cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.harborriders-cookie-type {
    background: rgba(61, 41, 20, 0.4);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #8b6914;
    transition: all 0.3s ease;
}

.harborriders-cookie-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.harborriders-cookie-type h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #ff8c00;
    margin-bottom: 15px;
}

.harborriders-cookie-type p {
    color: #cd853f;
    font-size: 14px;
    line-height: 1.6;
}

/* Privacy Contact */
.harborriders-privacy-contact {
    padding: 100px 50px;
}

.harborriders-privacy-contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.harborriders-privacy-contact-info p {
    font-size: 18px;
    color: #cd853f;
    margin-bottom: 30px;
}

.harborriders-privacy-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.harborriders-privacy-method {
    background: rgba(139, 105, 20, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #8b6914;
}

.harborriders-privacy-method h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #daa520;
    margin-bottom: 15px;
}

.harborriders-privacy-method p {
    color: #cd853f;
    line-height: 1.8;
}

.harborriders-privacy-method a {
    color: #daa520;
    text-decoration: none;
}

.harborriders-privacy-method a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

/* ========================================
   TERMS PAGE SPECIFIC STYLES
   ======================================== */

.harborriders-terms-intro {
    padding: 100px 50px;
    background: linear-gradient(180deg, transparent, rgba(218, 165, 32, 0.05));
}

.harborriders-terms-notice {
    background: rgba(218, 165, 32, 0.1);
    border: 2px solid #8b6914;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.harborriders-terms-notice p {
    font-size: 18px;
    color: #cd853f;
    line-height: 1.8;
}

.harborriders-effective-date {
    font-style: italic;
    color: #cd853f;
    margin-top: 15px;
    font-size: 14px;
}

/* Terms Sections */
.harborriders-terms-section {
    padding: 80px 50px;
    position: relative;
}

.harborriders-terms-section:nth-child(even) {
    background: rgba(61, 41, 20, 0.05);
}

.harborriders-terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.harborriders-terms-subsection {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid #8b6914;
}

.harborriders-terms-subsection h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 20px;
    color: #daa520;
    margin-bottom: 15px;
}

.harborriders-terms-subsection p {
    color: #cd853f;
    line-height: 1.8;
}

/* Gaming Rules */
.harborriders-gaming-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.harborriders-rule-card {
    background: linear-gradient(135deg, rgba(61, 41, 20, 0.7), rgba(92, 49, 23, 0.5));
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.harborriders-rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.harborriders-rule-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 26px;
    color: #ff8c00;
    margin-bottom: 20px;
}

.harborriders-rule-card p {
    color: #cd853f;
    line-height: 1.6;
    margin-bottom: 15px;
}

.harborriders-rule-card ul {
    list-style: none;
    padding: 0;
}

.harborriders-rule-card ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #cd853f;
}

.harborriders-rule-card ul li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-size: 16px;
}

/* Financial Terms */
.harborriders-financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.harborriders-financial-item {
    background: rgba(46, 90, 87, 0.2);
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.harborriders-financial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.harborriders-financial-item h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #daa520;
    margin-bottom: 15px;
}

.harborriders-financial-item p {
    color: #cd853f;
    line-height: 1.6;
}

/* Responsible Gaming Box */
.harborriders-responsible-content {
    padding: 40px;
}

.harborriders-responsible-content p {
    font-size: 18px;
    color: #3d2914;
    margin-bottom: 20px;
}

.harborriders-responsible-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.harborriders-responsible-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(61, 41, 20, 0.3);
    color: #5c3317;
}

.harborriders-responsible-list li:last-child {
    border-bottom: none;
}

.harborriders-responsible-list strong {
    color: #3d2914;
}

/* IP Notice */
.harborriders-ip-notice {
    background: rgba(139, 105, 20, 0.1);
    border: 2px dashed #8b6914;
    border-radius: 15px;
    padding: 30px;
}

.harborriders-ip-notice p {
    color: #cd853f;
    margin-bottom: 20px;
}

.harborriders-ip-notice ul {
    list-style: none;
    padding: 0;
}

.harborriders-ip-notice ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #cd853f;
}

.harborriders-ip-notice ul li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* Liability Section */
.harborriders-liability-content {
    margin-top: 30px;
}

.harborriders-disclaimer-box {
    background: rgba(255, 76, 76, 0.1);
    border: 2px solid #ff4c4c;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.harborriders-disclaimer-box h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #ff8c00;
    margin-bottom: 15px;
}

.harborriders-disclaimer-box p {
    color: #cd853f;
    line-height: 1.6;
}

/* Dispute Process */
.harborriders-dispute-process {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.harborriders-dispute-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 30px;
    background: rgba(61, 41, 20, 0.3);
    border-radius: 20px;
    border: 2px solid #8b6914;
    min-width: 250px;
}

.harborriders-dispute-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #8b6914;
}

.harborriders-step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #daa520;
    color: #1a1512;
    border-radius: 50%;
    font-family: 'Pirata One', cursive;
    font-size: 28px;
    line-height: 50px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.harborriders-dispute-step h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #daa520;
    margin-bottom: 15px;
}

.harborriders-dispute-step p {
    color: #cd853f;
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   RSG PAGE SPECIFIC STYLES
   ======================================== */

.harborriders-rsg-intro {
    padding: 100px 50px;
    background: linear-gradient(180deg, transparent, rgba(79, 127, 107, 0.05));
}

.harborriders-rsg-pledge {
    background: linear-gradient(135deg, rgba(79, 127, 107, 0.2), rgba(46, 90, 87, 0.1));
    border: 3px solid #4f7f6b;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.harborriders-rsg-pledge::before {
    content: "🛡️";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    opacity: 0.1;
}

/* Assessment Section */
.harborriders-assessment {
    padding: 100px 50px;
    background: rgba(61, 41, 20, 0.05);
}

.harborriders-assessment-intro {
    text-align: center;
    margin-bottom: 40px;
}

.harborriders-assessment-intro p {
    font-size: 20px;
    color: #cd853f;
}

.harborriders-assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.harborriders-assessment-item {
    background: rgba(61, 41, 20, 0.5);
    border: 2px solid #8b6914;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.harborriders-assessment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.harborriders-question-number {
    width: 50px;
    height: 50px;
    background: #daa520;
    color: #1a1512;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.harborriders-assessment-item p {
    color: #cd853f;
    line-height: 1.6;
}

.harborriders-assessment-result {
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid #ff8c00;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
}

.harborriders-assessment-result p {
    font-size: 18px;
    color: #cd853f;
}

/* Tools Section */
.harborriders-tools {
    padding: 100px 50px;
    background: linear-gradient(180deg, rgba(46, 90, 87, 0.1), transparent);
}

.harborriders-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.harborriders-tool-card {
    background: linear-gradient(135deg, #3d2914, #5c3317);
    border: 3px solid #8b6914;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.harborriders-tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.2), transparent);
    transition: left 0.5s ease;
}

.harborriders-tool-card:hover::before {
    left: 100%;
}

.harborriders-tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.harborriders-tool-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.harborriders-tool-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 26px;
    color: #daa520;
    margin-bottom: 15px;
}

.harborriders-tool-card p {
    color: #cd853f;
    line-height: 1.6;
    margin-bottom: 20px;
}

.harborriders-tool-btn {
    background: linear-gradient(45deg, #8b6914, #daa520);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #1a1512;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.harborriders-tool-btn:hover {
    background: linear-gradient(45deg, #daa520, #ff8c00);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.5);
}

/* Tips Section */
.harborriders-tips {
    padding: 100px 50px;
}

.harborriders-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.harborriders-tip-item {
    padding: 30px;
    background: rgba(61, 41, 20, 0.4);
    border-radius: 15px;
    border: 1px solid #8b6914;
    transition: all 0.3s ease;
    text-align: center;
}

.harborriders-tip-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.harborriders-tip-item h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #ff8c00;
    margin-bottom: 15px;
}

.harborriders-tip-item p {
    color: #cd853f;
    line-height: 1.6;
}

/* Support Organizations */
.harborriders-support {
    padding: 100px 50px;
    background: rgba(79, 127, 107, 0.05);
}

.harborriders-support-intro {
    text-align: center;
    margin-bottom: 40px;
}

.harborriders-support-intro p {
    font-size: 18px;
    color: #cd853f;
}

.harborriders-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.harborriders-support-org {
    background: linear-gradient(135deg, rgba(61, 41, 20, 0.6), rgba(92, 49, 23, 0.4));
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 35px;
}

.harborriders-support-org h3 {
    font-family: 'Pirata One', cursive;
    font-size: 28px;
    color: #daa520;
    margin-bottom: 25px;
    text-align: center;
}

.harborriders-org-details {
    background: rgba(218, 165, 32, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.harborriders-org-details h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 20px;
    color: #ff8c00;
    margin-bottom: 10px;
}

.harborriders-org-details p {
    color: #cd853f;
    line-height: 1.6;
}

/* Education Section */
.harborriders-education {
    padding: 100px 50px;
}

.harborriders-education-content {
    margin-top: 40px;
}

.harborriders-edu-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(139, 105, 20, 0.1);
    border-radius: 15px;
}

.harborriders-edu-section h3 {
    font-family: 'Pirata One', cursive;
    font-size: 26px;
    color: #daa520;
    margin-bottom: 20px;
}

.harborriders-edu-section p {
    color: #cd853f;
    line-height: 1.8;
    margin-bottom: 15px;
}

.harborriders-edu-section ul {
    list-style: none;
    padding: 0;
}

.harborriders-edu-section ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #cd853f;
}

.harborriders-edu-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-size: 18px;
}

/* Help Contact */
.harborriders-help-contact {
    padding: 100px 50px;
    background: linear-gradient(180deg, rgba(79, 127, 107, 0.1), transparent);
}

.harborriders-help-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.harborriders-help-content p {
    font-size: 18px;
    color: #cd853f;
    margin-bottom: 30px;
}

.harborriders-help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.harborriders-help-method {
    background: rgba(79, 127, 107, 0.2);
    border: 2px solid #4f7f6b;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.harborriders-help-method h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #4f7f6b;
    margin-bottom: 15px;
}

.harborriders-help-method p {
    color: #cd853f;
}

.harborriders-help-method a {
    color: #daa520;
    text-decoration: none;
}

.harborriders-help-method a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

.harborriders-help-reminder {
    background: rgba(255, 140, 0, 0.1);
    border: 2px dashed #ff8c00;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.harborriders-help-reminder p {
    font-size: 16px;
    color: #cd853f;
}

.harborriders-help-reminder strong {
    color: #ff8c00;
}

/* ========================================
   OPT-OUT PAGE SPECIFIC STYLES
   ======================================== */

.harborriders-optout-intro {
    padding: 100px 50px;
    background: linear-gradient(180deg, transparent, rgba(61, 41, 20, 0.05));
}

/* Options Section */
.harborriders-options {
    padding: 100px 50px;
    background: rgba(46, 90, 87, 0.05);
}

.harborriders-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.harborriders-option-card {
    background: linear-gradient(135deg, rgba(61, 41, 20, 0.7), rgba(92, 49, 23, 0.5));
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.harborriders-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.harborriders-option-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.harborriders-option-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 28px;
    color: #daa520;
    margin-bottom: 20px;
    text-align: center;
}

.harborriders-option-card p {
    color: #cd853f;
    text-align: center;
    margin-bottom: 20px;
}

/* Preference List */
.harborriders-preference-list {
    margin: 20px 0;
}

.harborriders-checkbox-label {
    display: block;
    padding: 10px 0;
    color: #cd853f;
    cursor: pointer;
    transition: color 0.3s ease;
}

.harborriders-checkbox-label:hover {
    color: #daa520;
}

.harborriders-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    vertical-align: middle;
}

/* Break Options */
.harborriders-break-options {
    margin: 20px 0;
}

.harborriders-break-duration {
    width: 100%;
    padding: 12px;
    background: rgba(26, 21, 18, 0.7);
    border: 2px solid #8b6914;
    border-radius: 10px;
    color: #daa520;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    cursor: pointer;
}

.harborriders-break-duration:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

.harborriders-option-btn {
    background: linear-gradient(45deg, #8b6914, #daa520);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #1a1512;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.harborriders-option-btn:hover {
    background: linear-gradient(45deg, #daa520, #ff8c00);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.5);
}

/* Complete Opt-Out */
.harborriders-complete-optout {
    padding: 100px 50px;
}

.harborriders-complete-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.harborriders-complete-option {
    padding: 40px;
    background: rgba(61, 41, 20, 0.5);
    border-radius: 20px;
    border: 2px solid #8b6914;
    text-align: center;
}

.harborriders-complete-option h3 {
    font-family: 'Pirata One', cursive;
    font-size: 26px;
    color: #ff8c00;
    margin-bottom: 20px;
}

.harborriders-complete-option p {
    color: #cd853f;
    line-height: 1.6;
    margin-bottom: 20px;
}

.harborriders-complete-btn {
    background: linear-gradient(45deg, #8b6914, #daa520);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Pirata One', cursive;
    font-size: 20px;
    color: #1a1512;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.harborriders-complete-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.5);
}

.harborriders-complete-btn.danger {
    background: linear-gradient(45deg, #ff4c4c, #cc0000);
    color: white;
}

.harborriders-complete-btn.danger:hover {
    box-shadow: 0 15px 35px rgba(255, 76, 76, 0.5);
}

/* Exclusion Section */
.harborriders-exclusion {
    padding: 100px 50px;
    background: rgba(255, 76, 76, 0.05);
}

.harborriders-exclusion-content {
    max-width: 1000px;
    margin: 0 auto;
}

.harborriders-exclusion-info {
    text-align: center;
    margin-bottom: 40px;
}

.harborriders-exclusion-info p {
    font-size: 18px;
    color: #cd853f;
}

.harborriders-exclusion-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.harborriders-exclusion-card {
    background: linear-gradient(135deg, #3d2914, #5c3317);
    border: 3px solid #8b6914;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.harborriders-exclusion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.harborriders-exclusion-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 26px;
    color: #ff8c00;
    margin-bottom: 10px;
}

.harborriders-exclusion-card p {
    font-size: 18px;
    color: #daa520;
    margin-bottom: 20px;
    font-weight: 600;
}

.harborriders-exclusion-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.harborriders-exclusion-card ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #cd853f;
}

.harborriders-exclusion-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #daa520;
    font-size: 20px;
}

.harborriders-exclusion-cta {
    text-align: center;
    margin-top: 40px;
}

.harborriders-exclusion-cta p {
    font-size: 18px;
    color: #cd853f;
    margin-bottom: 15px;
}

.harborriders-exclusion-link {
    font-size: 20px;
    color: #daa520;
    text-decoration: none;
    border-bottom: 2px solid #daa520;
    transition: all 0.3s ease;
}

.harborriders-exclusion-link:hover {
    color: #ff8c00;
    border-bottom-color: #ff8c00;
}

/* FAQ Accordion */
.harborriders-optout-faq {
    padding: 100px 50px;
    background: rgba(61, 41, 20, 0.05);
}

.harborriders-faq-accordion {
    margin-top: 40px;
}

.harborriders-optout-faq .harborriders-faq-item {
    background: rgba(61, 41, 20, 0.4);
    border: 1px solid #8b6914;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.harborriders-optout-faq .harborriders-faq-item:hover {
    background: rgba(61, 41, 20, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.harborriders-optout-faq .harborriders-faq-item h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #ff8c00;
    margin-bottom: 15px;
    position: relative;
    padding-right: 30px;
}

.harborriders-optout-faq .harborriders-faq-item h3::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.harborriders-optout-faq .harborriders-faq-item:hover h3::after {
    transform: rotate(180deg);
}

.harborriders-optout-faq .harborriders-faq-item p {
    color: #cd853f;
    line-height: 1.6;
}

/* Alternative Contact */
.harborriders-alternative-contact {
    padding: 100px 50px;
}

.harborriders-alt-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.harborriders-alt-method {
    background: rgba(139, 105, 20, 0.2);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #8b6914;
}

.harborriders-alt-method h3 {
    font-family: 'Pirata One', cursive;
    font-size: 26px;
    color: #daa520;
    margin-bottom: 20px;
}

.harborriders-alt-method p {
    color: #cd853f;
    line-height: 1.8;
    margin-bottom: 10px;
}

.harborriders-alt-method a {
    color: #daa520;
    text-decoration: none;
}

.harborriders-alt-method a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

/* Farewell Section */
.harborriders-farewell {
    padding: 80px 50px;
    text-align: center;
    background: linear-gradient(180deg, rgba(218, 165, 32, 0.05), transparent);
}

.harborriders-farewell-message {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(139, 105, 20, 0.2));
    border: 3px double #8b6914;
    border-radius: 30px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.harborriders-farewell-message::before,
.harborriders-farewell-message::after {
    content: "⚓";
    position: absolute;
    font-size: 60px;
    opacity: 0.1;
}

.harborriders-farewell-message::before {
    top: 20px;
    left: 20px;
}

.harborriders-farewell-message::after {
    bottom: 20px;
    right: 20px;
}

.harborriders-farewell-message h2 {
    font-family: 'Pirata One', cursive;
    font-size: 42px;
    color: #daa520;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.harborriders-farewell-message p {
    font-size: 20px;
    line-height: 1.8;
    color: #cd853f;
    font-family: 'Cinzel', serif;
}

.harborriders-farewell-signature {
    margin-top: 40px;
    font-family: 'Creepster', cursive;
    font-size: 24px;
    color: #ff8c00;
}

/* ========================================
   ADDITIONAL RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    .harborriders-data-grid,
    .harborriders-usage-grid,
    .harborriders-protection-measures,
    .harborriders-rights-grid,
    .harborriders-cookie-types,
    .harborriders-privacy-contacts,
    .harborriders-gaming-rules,
    .harborriders-financial-grid,
    .harborriders-assessment-grid,
    .harborriders-tools-grid,
    .harborriders-tips-grid,
    .harborriders-support-grid,
    .harborriders-help-options,
    .harborriders-options-grid,
    .harborriders-complete-options,
    .harborriders-exclusion-options,
    .harborriders-alt-methods {
        grid-template-columns: 1fr;
    }
    
    .harborriders-dispute-process {
        flex-direction: column;
    }
    
    .harborriders-dispute-step:not(:last-child)::after {
        display: none;
    }
    
    .harborriders-farewell-message {
        padding: 40px 20px;
    }
    
    .harborriders-farewell-message h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .harborriders-privacy-pledge,
    .harborriders-terms-notice,
    .harborriders-rsg-pledge,
    .harborriders-assessment-result,
    .harborriders-help-reminder,
    .harborriders-farewell-message {
        padding: 20px;
    }
    
    .harborriders-data-category,
    .harborriders-protection-item,
    .harborriders-right-card,
    .harborriders-rule-card,
    .harborriders-financial-item,
    .harborriders-assessment-item,
    .harborriders-tool-card,
    .harborriders-option-card,
    .harborriders-exclusion-card {
        padding: 20px;
    }
    
    .harborriders-faq-grid {
        grid-template-columns: 1fr;
    }
}



/* HarborRiders Enhanced Legal Pages CSS - Pirate-Western-Steampunk Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', serif;
    background-color: #1a1512;
    color: #daa520;
    overflow-x: hidden;
    position: relative;
}

/* Age Verification Popup */
.harborriders-age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(46, 90, 87, 0.95), rgba(26, 21, 18, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.harborriders-age-container {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 600"><rect fill="%23cd853f" width="400" height="600" opacity="0.1"/></svg>');
    background-color: #3d2914;
    border: 5px solid #8b6914;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(205, 133, 63, 0.3);
    max-width: 500px;
}

.harborriders-compass-decoration {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #daa520, #8b6914);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.5);
}

.harborriders-compass-decoration::before {
    content: "N";
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #3d2914;
}

.harborriders-age-title {
    font-family: 'Pirata One', cursive;
    font-size: 36px;
    color: #ff8c00;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.harborriders-age-text {
    font-size: 18px;
    color: #cd853f;
    margin-bottom: 30px;
    font-family: 'Cinzel', serif;
}

.harborriders-skull-divider {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: radial-gradient(circle, #8b6914, #5c3317);
    border-radius: 50%;
}

.harborriders-age-question {
    font-size: 22px;
    color: #daa520;
    margin-bottom: 30px;
    font-family: 'Creepster', cursive;
    letter-spacing: 1px;
}

.harborriders-age-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.harborriders-btn-yes, .harborriders-btn-no {
    padding: 15px 40px;
    font-size: 20px;
    font-family: 'Pirata One', cursive;
    border: 3px solid #8b6914;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.harborriders-btn-yes {
    background: linear-gradient(45deg, #cd853f, #ff8c00);
    color: #1a1512;
}

.harborriders-btn-yes:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
}

.harborriders-btn-no {
    background: linear-gradient(45deg, #2e5a57, #4f7f6b);
    color: #daa520;
}

.harborriders-btn-no:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 10px 30px rgba(79, 127, 107, 0.5);
}

.harborriders-rope-decoration {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 40px;
    background: repeating-linear-gradient(
        45deg,
        #8b6914,
        #8b6914 10px,
        #5c3317 10px,
        #5c3317 20px
    );
    border-radius: 50%;
}

/* Vertical Navigation */
.harborriders-vertical-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100px;
    background: linear-gradient(180deg, #3d2914 0%, #1a1512 100%);
    border-right: 5px solid #8b6914;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.8);
}

.harborriders-compass-nav {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, #daa520, #8b6914);
    border-radius: 50%;
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.5);
    animation: harborriders-compass-glow 3s ease-in-out infinite;
}

@keyframes harborriders-compass-glow {
    0%, 100% { box-shadow: 0 5px 15px rgba(218, 165, 32, 0.5); }
    50% { box-shadow: 0 5px 30px rgba(218, 165, 32, 0.8); }
}

.harborriders-compass-needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 50px;
    background: #3d2914;
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.harborriders-nav-list {
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.harborriders-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #cd853f;
    transition: all 0.3s ease;
    position: relative;
}

.harborriders-nav-link:hover {
    color: #ff8c00;
    transform: translateX(5px);
}

.harborriders-nav-link.active {
    color: #daa520;
}

.harborriders-nav-link.active::after {
    content: "";
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
    background: #daa520;
}

.harborriders-icon {
    font-size: 28px;
    margin-bottom: 5px;
}

.harborriders-text {
    font-size: 12px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.harborriders-lantern-nav {
    width: 50px;
    height: 70px;
    background: linear-gradient(180deg, #ff8c00 0%, #cd853f 100%);
    border-radius: 25px 25px 40% 40%;
    position: relative;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.5);
    animation: harborriders-lantern-swing 4s ease-in-out infinite;
}

@keyframes harborriders-lantern-swing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Main Content */
.harborriders-main-content {
    margin-left: 100px;
    min-height: 100vh;
    position: relative;
}

/* Hero Section */
.harborriders-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px;
    background: linear-gradient(135deg, rgba(61, 41, 20, 0.3), rgba(26, 21, 18, 0.8));
}

.harborriders-weathered-paper {
    background: linear-gradient(45deg, #cd853f 0%, #daa520 50%, #cd853f 100%);
    padding: 60px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: rotate(-1deg);
    overflow: hidden;
    text-align: center;
}

.harborriders-weathered-paper::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%233d2914" opacity="0.1"/></svg>');
    z-index: -1;
}

.harborriders-main-title {
    font-family: 'Pirata One', cursive;
    font-size: 60px;
    color: #3d2914;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.harborriders-subtitle {
    font-family: 'Creepster', cursive;
    font-size: 24px;
    color: #5c3317;
    text-align: center;
    letter-spacing: 2px;
}

/* Legal Sections */
.harborriders-legal-section {
    padding: 80px 50px;
    position: relative;
}

.harborriders-legal-section:nth-child(even) {
    background: rgba(61, 41, 20, 0.1);
}

.harborriders-legal-container {
    max-width: 1200px;
    margin: 0 auto;
}

.harborriders-section-title {
    font-family: 'Pirata One', cursive;
    font-size: 42px;
    color: #daa520;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.harborriders-section-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: #ff8c00;
    margin-bottom: 30px;
    border-bottom: 2px solid #8b6914;
    padding-bottom: 15px;
}

.harborriders-legal-content {
    background: rgba(205, 133, 63, 0.1);
    border: 2px solid #8b6914;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.harborriders-legal-text {
    font-size: 16px;
    line-height: 1.8;
    color: #cd853f;
    margin-bottom: 20px;
}

.harborriders-legal-text strong {
    color: #daa520;
    font-weight: 600;
}

.harborriders-legal-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.harborriders-legal-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #cd853f;
    border-bottom: 1px solid rgba(139, 105, 20, 0.2);
}

.harborriders-legal-list li:last-child {
    border-bottom: none;
}

.harborriders-legal-list li::before {
    content: "⚓";
    position: absolute;
    left: 0;
    top: 12px;
    color: #daa520;
    font-size: 16px;
}

.harborriders-numbered-list {
    counter-reset: pirate-counter;
    list-style: none;
    padding-left: 0;
}

.harborriders-numbered-list li {
    counter-increment: pirate-counter;
    padding: 15px 0 15px 50px;
    position: relative;
    border-bottom: 1px solid rgba(139, 105, 20, 0.2);
}

.harborriders-numbered-list li::before {
    content: counter(pirate-counter);
    position: absolute;
    left: 0;
    top: 15px;
    background: #daa520;
    color: #1a1512;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Pirata One', cursive;
    font-size: 18px;
    font-weight: bold;
}

/* Important Notice Boxes */
.harborriders-important-notice {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 76, 76, 0.1));
    border: 3px solid #ff8c00;
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
}

.harborriders-important-notice::before {
    content: "⚠️";
    position: absolute;
    top: -20px;
    left: 30px;
    background: #1a1512;
    padding: 0 15px;
    font-size: 30px;
}

.harborriders-important-notice h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #ff8c00;
    margin-bottom: 15px;
}

.harborriders-warning-box {
    background: rgba(255, 76, 76, 0.1);
    border: 2px solid #ff4c4c;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
}

.harborriders-warning-box h3 {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: #ff4c4c;
    margin-bottom: 15px;
}

/* Legal Grid Systems */
.harborriders-legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.harborriders-legal-card {
    background: linear-gradient(135deg, rgba(61, 41, 20, 0.8), rgba(92, 49, 23, 0.6));
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.harborriders-legal-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1), transparent);
    animation: harborriders-card-glow 15s linear infinite;
}

@keyframes harborriders-card-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.harborriders-legal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.harborriders-legal-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #ff8c00;
    margin-bottom: 20px;
}

.harborriders-legal-card-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

/* Definition Boxes */
.harborriders-definition-box {
    background: rgba(79, 127, 107, 0.2);
    border-left: 5px solid #4f7f6b;
    padding: 25px;
    margin: 25px 0;
    border-radius: 0 15px 15px 0;
}

.harborriders-definition-box h4 {
    font-family: 'Pirata One', cursive;
    font-size: 20px;
    color: #4f7f6b;
    margin-bottom: 10px;
}

/* Table Styles */
.harborriders-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(61, 41, 20, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.harborriders-legal-table th {
    background: #8b6914;
    color: #1a1512;
    padding: 15px;
    font-family: 'Pirata One', cursive;
    font-size: 18px;
    text-align: left;
}

.harborriders-legal-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(139, 105, 20, 0.3);
    color: #cd853f;
}

.harborriders-legal-table tr:hover {
    background: rgba(218, 165, 32, 0.1);
}

/* Contact Information Styles */
.harborriders-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.harborriders-contact-card {
    background: rgba(139, 105, 20, 0.2);
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.harborriders-contact-card h3 {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: #daa520;
    margin-bottom: 20px;
}

.harborriders-contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Form Styles */
.harborriders-legal-form {
    background: rgba(61, 41, 20, 0.3);
    border: 2px solid #8b6914;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
}

.harborriders-form-group {
    margin-bottom: 25px;
}

.harborriders-form-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #daa520;
    margin-bottom: 10px;
    font-size: 16px;
}

.harborriders-form-input,
.harborriders-form-select,
.harborriders-form-textarea {
    width: 100%;
    padding: 15px;
    background: rgba(26, 21, 18, 0.7);
    border: 2px solid #8b6914;
    border-radius: 10px;
    color: #daa520;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.harborriders-form-input:focus,
.harborriders-form-select:focus,
.harborriders-form-textarea:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
    background: rgba(26, 21, 18, 0.9);
}

.harborriders-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.harborriders-checkbox-label {
    display: flex;
    align-items: center;
    color: #cd853f;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.harborriders-checkbox-label:hover {
    color: #daa520;
    background: rgba(218, 165, 32, 0.1);
    border-color: #8b6914;
}

.harborriders-checkbox-label input[type="checkbox"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #daa520;
}

.harborriders-submit-btn {
    background: linear-gradient(45deg, #8b6914, #daa520, #8b6914);
    background-size: 200% 100%;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Pirata One', cursive;
    font-size: 20px;
    color: #1a1512;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    transition: all 0.3s ease;
    animation: harborriders-gradient-shift 3s ease-in-out infinite;
}

@keyframes harborriders-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.harborriders-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.5);
}

/* Quote and Testimonial Styles */
.harborriders-quote-box {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(139, 105, 20, 0.2));
    border-left: 5px solid #daa520;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    font-style: italic;
    border-radius: 0 15px 15px 0;
}

.harborriders-quote-box::before {
    content: "\"";
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: rgba(218, 165, 32, 0.3);
    font-family: 'Pirata One', cursive;
}

.harborriders-quote-box blockquote {
    margin: 0;
    color: #cd853f;
    font-size: 18px;
    line-height: 1.8;
}

/* Progress Indicators */
.harborriders-progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.harborriders-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px;
    background: rgba(61, 41, 20, 0.3);
    border-radius: 15px;
    border: 2px solid #8b6914;
    min-width: 200px;
}

.harborriders-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #8b6914;
    z-index: 10;
}

.harborriders-step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #daa520;
    color: #1a1512;
    border-radius: 50%;
    font-family: 'Pirata One', cursive;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.harborriders-step h4 {
    font-family: 'Pirata One', cursive;
    font-size: 18px;
    color: #daa520;
    margin-bottom: 10px;
}

/* Timeline Styles */
.harborriders-timeline {
    position: relative;
    margin: 40px 0;
}

.harborriders-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #8b6914, #daa520, #8b6914);
    transform: translateX(-50%);
}

.harborriders-timeline-item {
    margin-bottom: 40px;
    position: relative;
    width: 45%;
}

.harborriders-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.harborriders-timeline-item:nth-child(even) {
    left: 55%;
    text-align: left;
}

.harborriders-timeline-item::before {
    content: "";
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #daa520;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
}

.harborriders-timeline-item:nth-child(odd)::before {
    right: -60px;
}

.harborriders-timeline-item:nth-child(even)::before {
    left: -60px;
}

/* Footer */
.harborriders-footer {
    background: linear-gradient(180deg, #1a1512 0%, #0d0907 100%);
    padding: 60px 50px 30px;
    border-top: 5px solid #8b6914;
    margin-top: 100px;
}

.harborriders-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.harborriders-footer-title {
    font-family: 'Pirata One', cursive;
    font-size: 28px;
    color: #daa520;
    margin-bottom: 20px;
}

.harborriders-footer-links {
    list-style: none;
}

.harborriders-footer-links li {
    margin-bottom: 15px;
}

.harborriders-footer-links a {
    color: #cd853f;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.harborriders-footer-links a:hover {
    color: #ff8c00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.harborriders-contact-info {
    color: #cd853f;
    line-height: 1.8;
    font-size: 16px;
}

.harborriders-contact-info a {
    color: #daa520;
    text-decoration: none;
}

.harborriders-contact-info a:hover {
    color: #ff8c00;
}

.harborriders-footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #8b6914;
    color: #708090;
}

.harborriders-anchor-decoration {
    font-size: 32px;
    margin-top: 10px;
    animation: harborriders-anchor-rock 3s ease-in-out infinite;
}

@keyframes harborriders-anchor-rock {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .harborriders-vertical-nav {
        width: 100%;
        height: 80px;
        flex-direction: row;
        padding: 0 20px;
        border-right: none;
        border-bottom: 5px solid #8b6914;
    }
    
    .harborriders-compass-nav {
        margin: 0 20px 0 0;
    }
    
    .harborriders-nav-list {
        flex-direction: row;
        gap: 20px;
    }
    
    .harborriders-lantern-nav {
        display: none;
    }
    
    .harborriders-main-content {
        margin-left: 0;
        margin-top: 80px;
    }
    
    .harborriders-main-title {
        font-size: 36px;
    }
    
    .harborriders-weathered-paper {
        padding: 30px;
    }
    
    .harborriders-legal-grid,
    .harborriders-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .harborriders-progress-steps {
        flex-direction: column;
    }
    
    .harborriders-step:not(:last-child)::after {
        display: none;
    }
    
    .harborriders-timeline::before {
        left: 20px;
    }
    
    .harborriders-timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left;
        padding-left: 50px;
    }
    
    .harborriders-timeline-item::before {
        left: 10px !important;
        right: auto !important;
    }
}

@media (max-width: 480px) {
    .harborriders-legal-section {
        padding: 40px 20px;
    }
    
    .harborriders-legal-content {
        padding: 20px;
    }
    
    .harborriders-section-title {
        font-size: 28px;
    }
    
    .harborriders-section-subtitle {
        font-size: 22px;
    }
}

/* Print Styles */
@media print {
    .harborriders-vertical-nav,
    .harborriders-footer {
        display: none;
    }
    
    .harborriders-main-content {
        margin-left: 0;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .harborriders-legal-content {
        background: transparent;
        border: 1px solid #ccc;
    }
}