<link rel="preload" href="https://newver.golcam.com/tpl/main/styles/fonts/font-awesome.min.css" as="style" fetchpriority="high"><link rel="stylesheet" href="https://newver.golcam.com/tpl/main/styles/fonts/font-awesome.min.css" media="all"><link rel="preload" href="https://newver.golcam.com/tpl/main/styles/fonts/material-icons.css" as="style" fetchpriority="high"><link rel="stylesheet" href="https://newver.golcam.com/tpl/main/styles/fonts/material-icons.css" media="all"><link rel="preload" href="https://newver.golcam.com/tpl/main/styles/js/swiper/swiper-bundle.min.css" as="style" fetchpriority="high"><link rel="stylesheet" href="https://newver.golcam.com/tpl/main/styles/js/swiper/swiper-bundle.min.css" media="print" onload="this.media='all'"><script src="https://newver.golcam.com/tpl/main/styles/js/swiper/swiper-bundle.min.js" defer></script><link rel="preload" href="https://newver.golcam.com/tpl/main/styles/fonts/quicksand/Quicksand-Regular.woff2" as="font" type="font/woff2" crossorigin><link rel="preload" href="https://newver.golcam.com/tpl/main/styles/fonts/quicksand/Quicksand-Medium.woff2" as="font" type="font/woff2" crossorigin><style>
/* Critical CSS */
:root {
  --font-primary: "Quicksand", Sans-serif;
}
body {
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
}
.vibe-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Mobile menu styles */
.vibe-nav-sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 2px 0 15px rgba(0,0,0,0.15);
  padding: 20px;
  box-sizing: border-box;
}

.vibe-nav-sidebar.active {
  left: 0 !important;
}

.vibe-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vibe-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

/* Blur effect for content behind sidebar */
body.menu-open .container,
body.menu-open main,
body.menu-open .content,
body.menu-open #content,
body.menu-open .main-content {
  filter: blur(3px);
  transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* Ensure nav elements remain interactive */
body.menu-open .vibe-nav,
body.menu-open .vibe-nav *,
body.menu-open .vibe-nav-sidebar,
body.menu-open .vibe-nav-sidebar *,
body.menu-open .vibe-nav-overlay {
  filter: none;
  pointer-events: auto;
}

/* Additional blur for specific PHPVibe elements */
body.menu-open .video-container,
body.menu-open .playlist-container,
body.menu-open .user-container,
body.menu-open .search-container,
body.menu-open .footer,
body.menu-open .sidebar {
  filter: blur(3px);
  transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.vibe-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  color: #333;
  font-size: 24px;
  outline: none;
  position: relative;
  width: 44px;
  height: 44px;
}

.vibe-nav-toggle:hover {
  color: #007bff;
}

/* Hamburger icon animation */
.hamburger {
  display: block;
  width: 24px;
  height: 18px;
  position: relative;
  margin: auto;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* Hamburger to X animation */
.vibe-nav-toggle.active .hamburger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.vibe-nav-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.vibe-nav-toggle.active .hamburger span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.vibe-nav-toggle.active:hover {
  color: #dc3545;
}

/* Mobile menu items */
.vibe-nav-sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.vibe-nav-sidebar-item {
  margin: 10px 0;
}

.vibe-nav-sidebar-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.vibe-nav-sidebar-link:hover {
  background-color: #f5f5f5;
}

.vibe-nav-sidebar-link i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* User section in sidebar */
.vibe-nav-sidebar-user {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.vibe-nav-sidebar-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.vibe-nav-sidebar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vibe-nav-sidebar-info {
  flex: 1;
}

.vibe-nav-sidebar-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.vibe-nav-sidebar-rank {
  font-size: 14px;
  color: #666;
}

/* Search section in sidebar */
.vibe-nav-sidebar-search {
  margin-bottom: 20px;
}

.vibe-nav-sidebar-search-title {
  font-size: 16px;
  margin: 15px 0 10px;
  color: #333;
}

.vibe-nav-sidebar-search-form {
  position: relative;
  margin-bottom: 15px;
}

.vibe-nav-sidebar-search-input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.vibe-nav-sidebar-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
}

@media (max-width: 992px) {
  .vibe-nav-toggle {
    display: block;
  }
  
  .vibe-nav-menu {
    display: none;
  }

  .vibe-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .vibe-nav-logo img {
    height: 40px;
  }
}
</style><link rel="preload" href="https://newver.golcam.com/tpl/main/styles/fonts/fonts.css" as="style" onload="this.onload=null;this.rel='stylesheet'"><noscript><link rel="stylesheet" href="https://newver.golcam.com/tpl/main/styles/fonts/fonts.css"></noscript><?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="purl.org/rss/1.0/modules/content/" xmlns:wfw="wellformedweb.org/CommentAPI/" xmlns:dc="purl.org/dc/elements/1.1/" xmlns:atom="www.w3.org/2005/Atom" xmlns:sy="purl.org/rss/1.0/modules/syndication/" xmlns:slash="purl.org/rss/1.0/modules/slash/">
	<channel>
		<title>Golcam</title>
		<atom:link href="https://newver.golcam.com/feed/" rel="self" type="application/rss+xml" />		<link>https://newver.golcam.com/feed/</link>
		<description>Con Golcam puoi rivedere i gol e le azioni delle tue partite di calcio a 5, calcio a 7! Inizia la tua carriera giocatore!</description>
		<language>it</language>
		<copyright>© 2021 GOLCAM.COM</copyright>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>

		<image>
		<title>Golcam</title>
			<url>https://newver.golcam.com/storage/uploads/logo-golcam-small-png571e5e5f3358e-png5b7be12038ca3.png</url>
			<link>https://newver.golcam.com/feed/</link>
			<description>Golcam</description>
			<width>75</width>
			<height>45</height>
		</image>

		<item>
			<title><![CDATA[Numero e assist]]></title>
			<link>https://newver.golcam.com/video/2640596/numero-e-assist/</link>
			<guid isPermaLink="true">https://newver.golcam.com/video/2640596/numero-e-assist/</guid>
			<pubDate>Mon, 12 Jan 2026 21:35:55 +0000</pubDate>
			<category domain="https://newver.golcam.com/categoria/numero-magico/6/"><![CDATA[NUMERO MAGICO]]></category>
			<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Stop e tiro ]]></title>
			<link>https://newver.golcam.com/video/2640591/stop-e-tiro/</link>
			<guid isPermaLink="true">https://newver.golcam.com/video/2640591/stop-e-tiro/</guid>
			<pubDate>Mon, 12 Jan 2026 21:35:12 +0000</pubDate>
			<category domain="https://newver.golcam.com/categoria/tiro-al-volo/7/"><![CDATA[TIRO AL VOLO]]></category>
			<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ASP1CAX26VAA AZIONE 04]]></title>
			<link>https://newver.golcam.com/video/2639683/asp1cax26vaa-azione-04/</link>
			<guid isPermaLink="true">https://newver.golcam.com/video/2639683/asp1cax26vaa-azione-04/</guid>
			<pubDate>Mon, 12 Jan 2026 20:00:49 +0000</pubDate>
			<category domain="https://newver.golcam.com/categoria/acrobazia/1/"><![CDATA[ACROBAZIA]]></category>
			<description><![CDATA[AZIONE 04]]></description>
			<content:encoded><![CDATA[AZIONE 04]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ASP1CAX26VAA GOL 11]]></title>
			<link>https://newver.golcam.com/video/2639671/asp1cax26vaa-gol-11/</link>
			<guid isPermaLink="true">https://newver.golcam.com/video/2639671/asp1cax26vaa-gol-11/</guid>
			<pubDate>Mon, 12 Jan 2026 20:00:05 +0000</pubDate>
			<category domain="https://newver.golcam.com/categoria/acrobazia/1/"><![CDATA[ACROBAZIA]]></category>
			<description><![CDATA[GOL 11]]></description>
			<content:encoded><![CDATA[GOL 11]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ASP1CAX26VAA AZIONE 03]]></title>
			<link>https://newver.golcam.com/video/2639629/asp1cax26vaa-azione-03/</link>
			<guid isPermaLink="true">https://newver.golcam.com/video/2639629/asp1cax26vaa-azione-03/</guid>
			<pubDate>Mon, 12 Jan 2026 19:56:24 +0000</pubDate>
			<category domain="https://newver.golcam.com/categoria/acrobazia/1/"><![CDATA[ACROBAZIA]]></category>
			<description><![CDATA[AZIONE 03]]></description>
			<content:encoded><![CDATA[AZIONE 03]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ASP1CAX26VAA GOL 10]]></title>
			<link>https://newver.golcam.com/video/2639548/asp1cax26vaa-gol-10/</link>
			<guid isPermaLink="true">https://newver.golcam.com/video/2639548/asp1cax26vaa-gol-10/</guid>
			<pubDate>Mon, 12 Jan 2026 19:50:07 +0000</pubDate>
			<category domain="https://newver.golcam.com/categoria/acrobazia/1/"><![CDATA[ACROBAZIA]]></category>
			<description><![CDATA[GOL 10]]></description>
			<content:encoded><![CDATA[GOL 10]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ASP1CAX26VAA GOL 09]]></title>
			<link>https://newver.golcam.com/video/2639498/asp1cax26vaa-gol-09/</link>
			<guid isPermaLink="true">https://newver.golcam.com/video/2639498/asp1cax26vaa-gol-09/</guid>
			<pubDate>Mon, 12 Jan 2026 19:45:46 +0000</pubDate>
			<category domain="https://newver.golcam.com/categoria/acrobazia/1/"><![CDATA[ACROBAZIA]]></category>
			<description><![CDATA[GOL 09]]></description>
			<content:encoded><![CDATA[GOL 09]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ASP1CAX26VAA GOL 08]]></title>
			<link>https://newver.golcam.com/video/2639479/asp1cax26vaa-gol-08/</link>
			<guid isPermaLink="true">https://newver.golcam.com/video/2639479/asp1cax26vaa-gol-08/</guid>
			<pubDate>Mon, 12 Jan 2026 19:44:26 +0000</pubDate>
			<category domain="https://newver.golcam.com/categoria/acrobazia/1/"><![CDATA[ACROBAZIA]]></category>
			<description><![CDATA[Stop e tiro ]]></description>
			<content:encoded><![CDATA[Stop e tiro ]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ASP1CAX26VAA GOL 07]]></title>
			<link>https://newver.golcam.com/video/2639462/asp1cax26vaa-gol-07/</link>
			<guid isPermaLink="true">https://newver.golcam.com/video/2639462/asp1cax26vaa-gol-07/</guid>
			<pubDate>Mon, 12 Jan 2026 19:42:51 +0000</pubDate>
			<category domain="https://newver.golcam.com/categoria/acrobazia/1/"><![CDATA[ACROBAZIA]]></category>
			<description><![CDATA[GOL 07]]></description>
			<content:encoded><![CDATA[GOL 07]]></content:encoded>
		</item>
	</channel>
</rss>